-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.26 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "fantastic_sh",
"version": "1.0.0",
"main": "index.js",
"repository": "",
"author": "",
"license": "MIT",
"dependencies": {
"antd-mobile": "^1.6.3",
"axios": "^0.16.1",
"babel-plugin-import": "^1.2.1",
"babel-polyfill": "^6.23.0",
"classnames": "^2.2.5",
"fs-extra": "^3.0.1",
"hammerjs": "^2.0.8",
"history": "^4.6.1",
"ioredis": "^2.5.0",
"js-cookie": "^2.1.4",
"jsx-control-statements": "^3.1.5",
"koa": "^2.2.0",
"koa-convert": "^1.2.0",
"koa-logger": "^2.0.1",
"koa-proxy": "^0.8.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"nuka-carousel": "^2.0.4",
"prop-types": "^15.5.8",
"qs": "^6.4.0",
"query-string": "^4.3.4",
"rc-dialog": "^6.5.10",
"rc-notification": "^2.0.0",
"rc-progress": "^2.1.2",
"rc-tabs": "^7.5.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-icons": "^2.2.3",
"react-motion": "^0.5.0",
"react-redux": "^5.0.4",
"react-render-html": "^0.2.0",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.2.0",
"reset-css": "^2.2.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-import": "^1.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"better-npm-run": "^0.0.15",
"bundle-loader": "^0.5.5",
"compression-webpack-plugin": "^0.4.0",
"css-loader": "^0.28.1",
"empty-module": "0.0.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"pm2": "^2.4.6",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^2.11.0",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.5",
"postcss-pxtorem": "^3.3.1",
"postcss-reporter": "^3.0.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.1",
"style-loader": "^0.17.0",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"svg-sprite-loader": "^3.0.5",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5",
"write-file-webpack-plugin": "^4.0.2",
"zip-webpack-plugin": "^1.1.0"
},
"scripts": {
"lint:es": "eslint src",
"lint:style": "stylelint src/**/*.less --syntax less",
"lint": "yarn lint:es",
"clean:dist": "rimraf dist",
"dev": "webpack-dev-server --config webpack.config.js --env.development",
"dev:mock": "yarn dev -- --env.ecosystem mock",
"build": "webpack --progress --colors --display-error-details --config webpack.config.js --env.production",
"build:mock": "yarn clean:dist && yarn build -- --env.ecosystem sst",
"build:prod": "yarn clean:dist && yarn build -- --env.ecosystem production",
"start.win:mock": "SET ECOSYSTEM=sst&pm2 start server.js --name=finacial -i 4 --watch=.",
"start": "npm run build"
}
}