-
Notifications
You must be signed in to change notification settings - Fork 0
/
__template.package.json
59 lines (59 loc) · 1.96 KB
/
__template.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
{
"name": "<%= name %>",
"version": "0.0.1",
"scripts": {
"test": "exit 0",
"start": "cross-env NODE_ENV=development webpack-dev-server --config config/webpack.config.js --mode=development --progress",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.config.js --mode=production --progress"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.3.0",
"@babel/plugin-proposal-object-rest-spread": "7.3.1",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "7.0.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"autoprefixer": "^9.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "8.0.5",
"babel-plugin-import": "^1.13.0",
"babel-preset-react-app": "^9.1.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"css-loader": "2.1.0",
"ejs-loader": "^0.5.0",
"eslint": "^6.1.0",
"eslint-config-alloy": "^2.0.5",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.4.0",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-flexbugs-fixes": "4.2.1",
"postcss-import": "^12.0.1",
"postcss-loader": "3.0.0",
"postcss-normalize": "8.0.1",
"postcss-preset-env": "6.7.0",
"postcss-safe-parser": "5.0.2",
"postcss-url": "^8.0.0",
"react-refresh": "^0.9.0",
"resolve-url-loader": "^3.1.2",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^1.4.1",
"url-loader": "^4.1.1",
"webpack": "4.28.0",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "3.2.1",
"webpack-dev-server": "3.1.14"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router": "^5.0.1"
}
}