-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "leetcode-rating-predictor",
"version": "1.0.0",
"description": "",
"engines": {
"node": "14.17.3"
},
"main": "server.js",
"scripts": {
"start": "node main.js --max_old_space_size=1024 --trace-warnings",
"dev": "nodemon --max_old_space_size=1024 --trace-warnings main.js",
"buildAddon": "npm run build --prefix ./services/predict-addon/",
"test": "jest"
},
"keywords": [],
"author": "Sudesh Chaudhary <[email protected]> (https://github.com/SysSn13)",
"license": "MIT",
"dependencies": {
"@bull-board/express": "^3.11.1",
"body-parser": "^1.20.2",
"bottleneck": "^2.19.5",
"bull": "^3.27.0",
"connect-ensure-login": "^0.1.1",
"ejs": "^3.1.9",
"express": "^4.18.3",
"express-ejs-layouts": "^2.5.0",
"express-rate-limit": "^5.3.0",
"express-session": "^1.17.2",
"express-unless": "^1.0.0",
"mongoose": "^5.13.22",
"node-fetch": "^2.6.7",
"node-gyp": "^8.1.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"sitemap": "^7.1.1"
},
"_id": "[email protected]",
"devDependencies": {
"dotenv": "^10.0.0",
"jest": "^27.0.6",
"nodemon": "^2.0.7"
}
}