-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.31 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.31 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
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
{
"name": "webpack-react-startup",
"version": "1.0.5",
"description": "webpack react startup without create-react-app",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --open --hot",
"proxy": "webpack-dev-server --mode development --open --hot --env proxy",
"build": "rm -rf ./dist && webpack --mode production",
"analyze": "webpack --mode production --analyze",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'"
},
"keywords": [
"webpack",
"react",
"create-react-app"
],
"author": "richardchen",
"license": "MIT",
"dependencies": {
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@babel/cli": "7.10.1",
"@babel/core": "7.10.2",
"@babel/plugin-proposal-class-properties": "7.10.1",
"@babel/plugin-proposal-decorators": "7.10.1",
"@babel/plugin-proposal-object-rest-spread": "7.10.1",
"@babel/preset-env": "7.10.2",
"@babel/preset-react": "7.10.1",
"@babel/preset-typescript": "7.10.1",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"@typescript-eslint/eslint-plugin": "3.2.0",
"@typescript-eslint/parser": "3.2.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"css-loader": "3.5.3",
"eslint": "7.2.0",
"eslint-config-react-app": "5.2.1",
"eslint-loader": "4.0.2",
"eslint-plugin-flowtype": "5.1.3",
"eslint-plugin-import": "2.21.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.4",
"file-loader": "6.0.0",
"html-webpack-plugin": "4.3.0",
"husky": "4.2.5",
"less": "3.11.3",
"less-loader": "6.1.0",
"mini-css-extract-plugin": "0.9.0",
"minimist": "1.2.5",
"optimize-css-assets-webpack-plugin": "5.0.3",
"postcss-loader": "3.0.0",
"postcss-preset-env": "6.7.0",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"style-loader": "1.2.1",
"terser-webpack-plugin": "3.0.3",
"typescript": "3.9.5",
"webpack": "4.43.0",
"webpack-bundle-analyzer": "3.8.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}