-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "kzhang.io",
"version": "1.0.0",
"description": "My Personal Website",
"author": "Kevin Zhang",
"repository": "*",
"main": "server/index.js",
"scripts": {
"test": "jest",
"babel-node": "babel-node --presets=es2015,react,stage-0 --ignore node_modules",
"monitor": "nodemon --ignore app/public/ --ignore app/client/ --exec npm run babel-node -- app/server",
"dev": "webpack -d --watch --progress & npm run monitor",
"build": "npm i && NODE_ENV=production webpack -p",
"start": "NODE_ENV=production babel-node app/server/index.js",
"sync": "npm run build && gsutil -mh 'Cache-Control:private' cp -r ./app/public/** gs://www.kzhang.io"
},
"dependencies": {
"body-parser": "1.16.0",
"express": "4.14.0",
"morgan": "1.7.0",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-router": "3.0.2",
"smoothscroll": "0.3.0",
"webpack": "1.14.0"
},
"devDependencies": {
"babel-cli": "6.22.2",
"babel-core": "6.22.1",
"babel-jest": "18.0.0",
"babel-loader": "6.2.10",
"babel-polyfill": "6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.22.0",
"babel-preset-stage-0": "6.22.0",
"jest": "18.1.0",
"nodemon": "1.11.0",
"react-addons-test-utils": "15.4.2"
},
"standard": {
"parser": "babel-eslint"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
],
"ignore": [
"/node_modules/"
]
}
}