-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.48 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.48 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
80
81
82
83
84
85
86
87
{
"name": "webpack-react-demo",
"version": "1.0.0",
"description": "webpack integrated react demo",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --config ./scripts/webpack.prod.config.js",
"start": "webpack serve --config ./scripts/webpack.dev.config.js",
"lint": "npx eslint ./src/ ./scripts/ ./test",
"lint:css": "stylelint ./src/",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yangin/webpack-react-demo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/yangin/webpack-react-demo/issues"
},
"homepage": "https://github.com/yangin/webpack-react-demo#readme",
"browserslist": {
"production": [
">1%",
"last 1 versions",
"ie>=8",
"Firefox> 20",
"Chrome > 31"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.2.1",
"@types/jest": "^27.0.2",
"@yangin/eslint-config-yangin-react": "^1.0.1",
"autoprefixer": "^10.2.6",
"babel-jest": "^27.3.0",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.13.2",
"cache-loader": "^4.1.0",
"css-loader": "^5.2.6",
"eslint": "^7.30.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.0",
"jest": "^27.3.0",
"less": "^4.1.1",
"less-loader": "^10.0.0",
"mini-css-extract-plugin": "^1.3.6",
"postcss-loader": "^6.1.0",
"speed-measure-webpack-plugin": "^1.5.0",
"style-loader": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"thread-loader": "^3.0.4",
"typescript": "^4.4.3",
"url-loader": "^4.1.1",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/core": "^7.14.6",
"@sentry/react": "^6.13.3",
"@sentry/tracing": "^6.13.3",
"antd": "^4.16.5",
"echarts": "^5.2.0",
"echarts-for-react": "^3.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"styled-components": "^5.3.1"
}
}