-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.14 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": "spacer",
"version": "0.0.1",
"private": true,
"engines": {
"node": "4.*"
},
"scripts": {
"build-js-server": "$(npm bin)/gulp js-server",
"build-js-client": "$(npm bin)/gulp js-client",
"build-js": "$(npm bin)/gulp js",
"watch-js-server": "$(npm bin)/gulp js-server-watch",
"watch-js-client": "$(npm bin)/gulp js-client-watch",
"watch-js": "$(npm bin)/gulp js-watch",
"install-bower": "$(npm bin)/bower install",
"install-typings": "$(npm bin)/typings install",
"install": "npm run install-bower & npm run install-typings",
"postinstall": "npm run build-js",
"start": "node bin/server.js",
"start-nodemon": "$(npm bin)/nodemon bin/server.js",
"start-dev": "npm run watch-js & npm run start-nodemon"
},
"dependencies": {
"express": "^4.14.0",
"socket.io": "^1.4.8"
},
"devDependencies": {
"beepbeep": "^1.2.0",
"bower": "^1.7.9",
"gulp": "^3.9.1",
"gulp-hash": "^3.1.0",
"nodemon": "^1.9.2",
"ts-loader": "^0.8.2",
"typescript": "^1.8.10",
"typings": "^1.3.0",
"webpack-node-externals": "^1.2.0",
"webpack-stream": "^3.2.0"
}
}