-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.04 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
{
"name": "shopping_cart",
"version": "0.1.0",
"private": true,
"engines": {
"node": "8.11.1",
"npm": "5.6.0"
},
"scripts": {
"start": "./node_modules/webpack/bin/webpack.js -p --progress && node server.js --inline --content-base . --history-api-fallback",
"build": "webpack --mode production",
"test": "react-scripts test",
"eject": "react-scripts eject",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install && npm run build"
},
"dependencies": {
"@babel/preset-react": "^7.9.4",
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.9",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"core-js": "^3.6.4",
"html-webpack-plugin": "^4.0.0-beta.14",
"node-sass": "^4.13.1",
"react": "^16.13.0",
"react-app-polyfill": "^1.0.6",
"react-dom": "^16.13.0",
"react-input-range": "^1.3.0",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"reactjs-popup": "^1.5.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"style-loader": "^1.1.3"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"ie 11",
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
">0.2%",
"not dead",
"ie >= 9"
]
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"babel-loader": "^8.0.6",
"babel-preset-react": "^6.24.1",
"css-loader": "^3.4.2",
"file-loader": "^6.0.0",
"sass-loader": "^8.0.2",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}