-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 KB
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
{
"name": "hackernews",
"version": "1.0.0",
"private": true,
"license": "MIT",
"sideEffects": false,
"scripts": {
"dev": "webpack serve --open --config webpack.dev.js --hot",
"prod": "webpack --config webpack.prod.js "
},
"dependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"immer": "^9.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.5",
"react-router-dom": "^5.2.0",
"redux": "^4.1.1",
"redux-thunk": "^2.3.0",
"save": "^2.4.0",
"style-loader": "^3.2.1",
"styled-components": "^5.3.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.49.0"
},
"devDependencies": {
"@babel/plugin-transform-async-to-generator": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.4.5",
"terser-webpack-plugin": "^5.3.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
}
}