-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 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
{
"name": "judge",
"description": "imba server and client template, with live server and client reloading, environment separation",
"keywords": [
"imba",
"boilerplate"
],
"author": "dipsywong98",
"contributors": [
"mcreng"
],
"bugs": "https://github.com/hkust-smartcar/judge2/issues",
"version": "1.0.0",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"start": "npm run build && cross-env NODE_ENV=production node src/server/index.js",
"dev": "concurrently --kill-others-on-fail \"npm run server-dev \" \"npm run watch\"",
"server-dev": "nodemon --watch src/ -e js,imba,ejs --exec cross-env NODE_ENV=dev node src/server/index.js",
"build": "webpack",
"watch": "webpack --watch --progress --colors --display-modules --env.NODE_ENV=dev",
"test": "mocha"
},
"files": [],
"directories": {},
"homepage": "https://robotics.ust.hk",
"repository": {
"type": "git",
"url": "git://github.com/hkust-smartcar/judge2.git"
},
"license": "MIT",
"dependencies": {
"await-exec": "^0.1.2",
"bee-queue": "^1.2.2",
"chokidar": "^2.0.4",
"connect-mongodb-session": "^2.0.6",
"ejs": "^2.6.1",
"ejs-locals": "^1.0.2",
"express": "^4.16.2",
"express-fileupload": "^1.1.9",
"express-session": "^1.15.6",
"express-socket.io-session": "^1.3.5",
"imba": "^1.4.0",
"imba-router": "^0.2.0",
"log4js": "^6.4.0",
"moment": "^2.23.0",
"mongodb": "^3.1.13",
"mongoose": "^5.7.5",
"multer": "^1.4.1",
"passport": "^0.4.0",
"passport-openidconnect": "0.0.2",
"prismjs": "^1.25.0",
"socket.io": "^2.4.0",
"socket.io-client": "^2.2.0",
"webpack": "^3.11.0",
"webpack-dev-server": "^3.1.11"
},
"devDependencies": {
"concurrently": "4.1.0",
"cross-env": "^5.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.17.4",
"webpack-cli": "^3.1.2"
}
}