forked from yvanwangl/AccountSystem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1017 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1017 Bytes
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
{
"private": true,
"entry": {
"index": "./src/index.js"
},
"dependencies": {
"antd": "^2.6.1",
"babel-plugin-import": "^1.1.0",
"dva": "^1.2.1",
"moment": "^2.17.1",
"numeral": "^2.0.6",
"qs": "^6.3.0",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"devDependencies": {
"atool-test-mocha": "^0.1.5",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-dva-hmr": "^0.2.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-runtime": "^6.9.2",
"cross-env": "^5.0.5",
"expect": "^1.20.2",
"redbox-react": "^1.3.2",
"roadhog": "^0.5.3"
},
"scripts": {
"start": "roadhog server",
"start:prod": "cross-env NODE_ENV=production pm2 start ./service/bin/www --name 'accountSystem'",
"start:dev": "cross-env NODE_ENV=development pm2 start ./service/bin/www",
"build": "cross-env NODE_ENV=production roadhog build",
"test": "atool-test-mocha ./src/**/*-test.js"
},
"theme": {
"primary-color": "#1DA57A"
}
}