-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.56 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ilinkon",
"version": "1.6.1",
"description": "iLinkOn App API server documentation",
"main": "dist/server.js",
"scripts": {
"watch-server": "nodemon --config nodemon.json",
"build-ts": "tsc",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"serve": "node -r module-alias/register dist/server.js",
"build": "npm run tslint && npm run build-ts && npm run copy-static-assets",
"start": "npm run serve",
"test:integration": "newman run integrationtests/node-koa-typescript.postman_collection.json -e integrationtests/heroku-dev.postman_environment.json",
"test:load": "locust --no-web -c 50 -r 10 -f loadtests/locustfile.py --run-time 1m --host=https://ilinkon.herokuapp.com"
},
"engines": {
"node": "10.x.x",
"npm": "6.x.x"
},
"_moduleAliases": {
"@config": "dist/config",
"@entities": "dist/entity",
"@shared": "dist/shared",
"@middleware": "dist/middleware",
"@interfaces": "dist/interface",
"@services": "dist/service",
"@validators": "dist/validators"
},
"author": "Kator James",
"license": "MIT",
"homepage": "https://github.com/16kilobyte/ilinkon#readme",
"keywords": [],
"repository": "16kilobyte/ilinkon-api",
"devDependencies": {
"@types/cron": "^1.7.1",
"@types/dotenv": "^6.1.1",
"@types/express-serve-static-core": "^4.17.2",
"@types/koa": "2.0.49",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-helmet": "^3.1.2",
"@types/koa-jwt": "^3.3.0",
"@types/koa-router": "^7.0.42",
"@types/koa__cors": "^2.2.3",
"@types/node": "^12.0.12",
"@types/shelljs": "^0.8.0",
"@types/ws": "^7.2.4",
"nodemon": "^2.0.2",
"shelljs": "^0.8.2",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@koa/cors": "^3.0.0",
"class-validator": "^0.9.1",
"cron": "^1.7.2",
"crypto": "^1.0.1",
"dotenv": "^8.0.0",
"expo-server-sdk": "^3.5.0",
"http-status": "^1.4.2",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-helmet": "^4.2.0",
"koa-jwt": "^3.3.2",
"koa-router": "^7.4.0",
"koa-swagger-decorator": "1.6.4",
"koa-unless": "^1.0.7",
"module-alias": "^2.2.2",
"pg": "^7.18.1",
"pg-connection-string": "^2.1.0",
"pusher": "^3.0.1",
"query-string": "^6.12.1",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"twilio": "^3.39.4",
"typeorm": "^0.2.22",
"validators": "^0.3.1",
"winston": "^3.2.1",
"ws": "^7.2.5"
}
}