-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 KB
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": "type-trainer",
"version": "1.0.0",
"description": "Typing app to help you practice typing",
"author": "Kevin Zhang",
"license": "ISC",
"repository": "*",
"main": "server/index.js",
"scripts": {
"start": "npm run build && node bin",
"monitor": "nodemon --ignore app/public/ --ignore app/client/ bin",
"dev": "webpack -d --watch --progress & npm run monitor",
"build": "NODE_ENV=production webpack -p",
"deploy": "gcloud app deploy gcloud.yaml",
"sync": "npm run build && gsutil -mh 'Cache-Control:private' cp -r ./app/public/** gs://type-trainer.kzhang.io"
},
"dependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"body-parser": "^1.15.2",
"ejs": "^2.5.2",
"express": "^4.14.0",
"morgan": "^1.7.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"redux": "^3.6.0",
"serve-favicon": "^2.3.0",
"webpack": "^1.13.2"
},
"devDependencies": {
"nodemon": "^1.10.2"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
],
"ignore": [
"/node_modules/"
]
},
"engines": {
"node": ">=0.12.7"
}
}