-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·76 lines (76 loc) · 2.05 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
{
"name": "random-league",
"version": "0.0.1",
"scripts": {
"build": "node ./util/build.js",
"lint": "tslint --project \"tsconfig.json\"",
"start": "pm2 startOrReload ecosystem.config.js",
"start-dev": "nodemon --config \"./util/nodemon.json\"",
"test": "NODE_ENV=test jest --config ./jest.config.js"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/supertest": "^2.0.8",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.21.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^5.2.1",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"helmet": "^3.22.0",
"http-status-codes": "^1.3.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.25.3",
"mongodb": "^3.5.7",
"mongoose": "^5.9.13",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"pm2": "^4.4.0",
"randomstring": "^1.1.5",
"redis": "^3.0.2",
"serve-favicon": "^2.5.0",
"supertest": "^4.0.2",
"typescript": "^3.6.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.0.1",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.6",
"@types/find": "^0.2.1",
"@types/fs-extra": "^8.0.0",
"@types/hapi__joi": "^17.1.0",
"@types/helmet": "^0.0.46",
"@types/jest": "^25.2.1",
"@types/jsonfile": "^5.0.0",
"@types/jsonwebtoken": "^8.3.3",
"@types/mongoose": "^5.7.15",
"@types/morgan": "^1.7.37",
"@types/multer": "^1.4.3",
"@types/node": "^12.7.5",
"@types/randomstring": "^1.1.6",
"@types/redis": "^2.8.20",
"@types/serve-favicon": "^2.2.31",
"find": "^0.3.0",
"fs-extra": "^8.1.0",
"jest": "25.1.0",
"jsonfile": "^5.0.0",
"nodemon": "^2.0.3",
"ts-jest": "^25.5.0",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.0",
"tslint-lines-between-class-members": "^1.3.6"
}
}