-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 927 Bytes
/
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
{
"name": "chinese-dark-chess",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development parcel ./src/index.html -p 3000",
"build": "cross-env NODE_ENV=production parcel build ./src/index.html --public-url ./",
"predeploy": "npm run clean && npm run build",
"deploy": "gh-pages -d dist",
"clean": "rimraf dist"
},
"author": "arthur",
"license": "MIT",
"private": false,
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"shortid": "^2.2.8",
"styled-components": "^3.0.2"
},
"devDependencies": {
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.3",
"gh-pages": "^1.1.0",
"parcel-bundler": "^1.5.1"
}
}