-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.06 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
{
"name": "hackapanel",
"version": "2.0.1",
"private": true,
"scripts": {
"start": "webpack && node ./bin/www",
"start:watch": "nodemon ./bin/www",
"bundle": "webpack",
"bundle:watch": "webpack --watch",
"test": "jest",
"init": "node ./scripts/init.js",
"setup": "node ./scripts/setup.js",
"time:add": "node ./scripts/add-time.js",
"team:add": "node ./scripts/add-teams.js",
"team:edit": "node ./scripts/edit-teams.js",
"production:start": "pm2 start ./bin/www --name hackapanel",
"production:restart": "pm2 restart hackapanel",
"production:stop": "pm2 stop hackapanel",
"production:delete": "pm2 delete hackapanel",
"pull": "git pull && npm run production:restart"
},
"dependencies": {
"body-parser": "~1.18.2",
"chalk": "^2.3.1",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "^4.16.4",
"inquirer": "^5.1.0",
"ip": "^1.1.5",
"marked": "^0.3.6",
"md5": "^2.2.1",
"moment": "^2.18.1",
"mongoose": "^4.12.1",
"morgan": "~1.9.0",
"mousetrap": "^1.6.1",
"pretty-error": "^2.1.1",
"pug": "2.0.0-beta11",
"react": "^16.0.0",
"react-ace": "^5.2.2",
"react-dom": "^16.0.0",
"react-render-html": "^0.5.2",
"redux": "^3.7.2",
"serve-favicon": "~2.4.5",
"socket.io": "^2.0.3",
"socket.io-client": "^2.0.3",
"sphere-engine": "^0.1.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clui": "^0.3.6",
"css-loader": "^0.28.7",
"jest-cli": "^21.2.1",
"node-sass": "^4.9.4",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"superagent": "^3.8.2",
"supertest": "^3.0.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"nodemonConfig": {
"ignore": [
"contest/*",
"contest/user_codes/*",
"client/script/*",
"client/script/components/*",
"client/script/model/*"
]
}
}