forked from fdecampredon/todo-mvc-react-hooks-experiments
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
36 lines (36 loc) · 904 Bytes
/
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
{
"name": "todo-mvc-react-hooks-experiments",
"version": "0.1.0",
"private": true,
"dependencies": {
"classnames": "^2.2.6",
"prettier": "^1.14.3",
"react": "^16.7.0-alpha.0",
"react-dom": "^16.7.0-alpha.0",
"react-router": "^4.3.1",
"todomvc-app-css": "^2.1.2",
"todomvc-common": "^1.0.5"
},
"scripts": {
"build": "webpack --mode production"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"babel-plugin-rawact": "^0.3.0",
"css-loader": "^1.0.1",
"mini-css-extract-plugin": "^0.4.4",
"terser-webpack-plugin": "^1.1.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
}
}