-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.32 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
{
"name": "nko2015-entry",
"version": "0.0.1",
"description": "Our soon to be awesome entry for NKO2015. Let's make something amazing.",
"author": "Node Knockout Team <[email protected]>",
"main": "./server.js",
"dependencies": {
"express": "^4.13.3",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-redux": "^4.0.0",
"redux": "^3.0.4",
"socket.io": "^1.3.7",
"babel": "^6.0.15",
"babel-core": "^6.1.2",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"babel-runtime": "^6.0.14",
"extract-text-webpack-plugin": "^0.9.1",
"nib": "^1.1.0",
"stylus": "^0.52.4",
"webpack": "^1.12.3"
},
"scripts": {
"start": "node server.js",
"postinstall": "node scripts/postinstall.js && npm run build-prod",
"build-js": "webpack -p",
"build-css": "stylus -I ./node_modules/nib/lib ./public/css/main.styl --out ./public/dist --compress",
"build-prod": "npm run build-js && npm run build-css",
"watch": "webpack-dev-server --port 3000 --progress --content-base public/",
"watch-css": "stylus -I ./node_modules/nib/lib --watch ./public/css/main.styl --out ./public/dist",
"frequencies": "node scripts/letters-frequency > frequencies.json"
},
"devDependencies": {
"webpack-dev-server": "^1.12.1"
}
}