-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
39 lines (39 loc) · 1.19 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
{
"name": "leetcode-pp-node",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=14.4.0"
},
"scripts": {
"start": "NODE_ENV=production node bin/www",
"dev": "NODE_ENV=development ./node_modules/.bin/nodemon bin/www",
"prd": "pm2 start bin/www",
"test": "echo \"Error: no test specified\" && exit 1",
"daily-schedule": "node ./schedule/daily-problem.js && node ./schedule/daily-check.js && node ./schedule/check-in.js",
"generate": "node ./static/solution/generate.js && node ./static/users/generate.js",
"lecture": "node ./static/lectures/generate.js",
"vercel-install": "./vercel-submodule-workaround.sh && yarn --ignore-scripts --production=false"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@octokit/rest": "^18.5.3",
"debug": "^4.1.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.0",
"koa-onerror": "^4.1.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa-views": "^6.2.0",
"mongodb": "^3.6.6",
"node-fetch": "^2.6.1",
"pug": "^2.0.3",
"request": "^2.88.2"
},
"devDependencies": {
"nodemon": "^1.19.1"
}
}