-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "beach-judge",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./build/generated/node/start.js",
"stop": "node ./build/generated/node/stop.js",
"build": "babel ./src/node --out-dir ./build/generated/node && babel ./src/js --out-dir ./build/generated/js",
"redeploy": "npm run build && npm run stop && npm start",
"restart": "npm run stop && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csulbacm/beach-judge.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/csulbacm/beach-judge/issues"
},
"homepage": "https://github.com/csulbacm/beach-judge#readme",
"dependencies": {
"async": "^2.0.1",
"bcrypt": "^0.8.7",
"bluebird": "^3.4.3",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"is-running": "^2.1.0",
"lodash": "^4.15.0",
"rethinkdb": "^2.3.2",
"rethinkdbdash": "^2.3.21",
"ws": "^1.1.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-es2016": "^6.11.3",
"less": "^2.7.1",
"less-plugin-clean-css": "^1.5.1",
"pug": "^2.0.0-beta6",
"pug-cli": "^1.0.0-alpha6",
"uglify-js": "^2.7.3"
},
"babel": {
"presets": [
"es2015",
"es2016"
]
}
}