-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.09 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
{
"name": "penny",
"version": "0.0.1",
"description": "Penny web app",
"scripts": {
"build": "rm -rf ./build && webpack --config webpack.config.prod.js",
"start": "webpack-dev-server --hot --inline --config webpack.config.dev.js",
"stats": "webpack --config webpack.config.prod.js --json > stats.json"
},
"author": "yanjia.li",
"license": "MIT",
"engines": {
"node": "8.9.x || 9.x"
},
"sideEffects": false,
"dependencies": {
"autoprefixer": "^6.5.1",
"axios": "^0.15.2",
"flat": "^4.0.0",
"lodash": "^4.17.11",
"numeral": "^2.0.4",
"prop-types": "^15.6.2",
"react": "^16.2.0",
"react-cookie": "^0.4.8",
"react-copy-to-clipboard": "^4.2.3",
"react-dom": "^16.2.0",
"react-final-form": "^3.6.5",
"react-hot-loader": "^4.3.11",
"react-intl": "^2.4.0",
"react-media": "^1.4.0",
"react-progressive-image": "^0.1.2",
"react-redux": "^5.0.6",
"react-router": "^3.2.1",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"semantic-ui-react": "^0.82.5",
"styled-components": "^3.4.9",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-react-intl": "^3.0.1",
"babel-plugin-styled-components": "^1.8.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-imports": "^1.5.1",
"css-loader": "^1.0.0",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"express": "^4.14.0",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.13.2",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.4"
}
}