-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.04 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
{
"name": "resit",
"version": "1.0.0",
"description": "Worker shop api",
"engineStrict": true,
"author": "Jan Socha",
"license": "LicenseRef-LICENSE",
"private": true,
"main": "dist/index.js",
"engines": {
"node": ">= 8.9.0"
},
"scripts": {
"run:api": "node dist/index.js",
"run:robot": "node dist/robot.js",
"build": "tsc -p tsconfig.json",
"lint": "tslint -t stylish --project tsconfig.json",
"docker:start": "sudo docker stack deploy --compose-file docker-compose-local.yml resit --with-registry-auth",
"docker:stop": "sudo docker stack rm resit"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.24",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/express-validator": "^3.0.0",
"@types/glob": "^5.0.35",
"@types/js-yaml": "^3.11.2",
"@types/mongoose": "^5.2.17",
"@types/node": "^10.5.8",
"@types/node-resque": "^5.4.1",
"@types/passport": "^0.4.6",
"@types/passport-jwt": "^3.0.1",
"@types/redis": "^2.8.6",
"@types/uuid": "^3.4.4",
"async-redis": "^1.1.4",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"convict": "^4.3.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-validator": "^5.3.0",
"extendify": "^1.0.0",
"fs": "^0.0.1-security",
"glob": "^7.1.3",
"helmet": "^3.13.0",
"ioredis": "^4.0.0",
"js-yaml": "^3.12.0",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.2.17",
"node-resque": "^5.5.0",
"node-schedule": "^1.3.0",
"nodemon": "^1.18.4",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"prettier": "~1.14.2",
"redis": "^2.8.0",
"rimraf": "~2.6.2",
"swagger-ui-express": "^4.0.1",
"ts-jest": "~23.1.3",
"ts-node": "^7.0.1",
"tslib": "~1.9.3",
"tslint": "~5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "1.14.0",
"tslint-microsoft-contrib": "~5.2.0",
"tsutils": "~3.0.0",
"typescript": "~3.0.1",
"uuid": "^3.3.2",
"winston": "2.4.4"
}
}