-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.24 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
{
"name": "Interactive-Resume",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "cross-env webpack-dev-server --devtool eval --progress --colors --hot --content-base build --historyApiFallback --config webpack.base.config.js",
"prod": "webpack --config webpack.prod.config.js --mode=development"
},
"author": "Yi-Shiuan Chen",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"autoprefixer-loader": "^3.2.0",
"babel-loader": "^8.0.6",
"browserslist": "^4.9.1",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.0",
"css-loader": "4.3.0",
"eslint": "^5.16.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^5.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"raw-loader": "^4.0.0",
"react-hot-loader": "^4.12.18",
"sass-loader": "^8.0.0",
"style-loader": "^1.1.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"axios": "^0.19.2",
"babel-eslint": "^10.0.3",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-axios": "^2.0.3",
"react-device-detect": "^1.11.14",
"react-dom": "^16.12.0",
"react-flip-page": "^1.6.0",
"react-redux": "^7.2.9",
"redux": "^4.2.1",
"styled-components": "^5.0.1",
"svg-inline-react": "^3.2.0",
"url-loader": "^3.0.0",
"webpack-cli": "^3.3.10"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
]
}