-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.56 KB
/
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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "cra-app",
"version": "1.0.0",
"description": "react 学习 + 理解",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./scripts/config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config ./scripts/config/webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix --ext .js --ext .jsx --ext .ts --ext .tsx src/ ",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wangtaostar/cra-app.git"
},
"keywords": [],
"author": "TJ",
"license": "ISC",
"bugs": {
"url": "https://github.com/wangtaostar/cra-app/issues"
},
"homepage": "https://github.com/wangtaostar/cra-app#readme",
"dependencies": {
"@babel/core": "7.13.16",
"@babel/plugin-transform-runtime": "7.13.15",
"@babel/preset-env": "7.13.15",
"@babel/preset-react": "7.13.13",
"@babel/preset-typescript": "7.13.0",
"@babel/runtime-corejs3": "7.13.17",
"@reduxjs/toolkit": "^1.5.1",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"clean-webpack-plugin": "4.0.0-alpha.0",
"copy-webpack-plugin": "8.1.1",
"cross-env": "^7.0.3",
"css-minimizer-webpack-plugin": "2.0.0",
"fork-ts-checker-webpack-plugin": "6.2.5",
"mini-css-extract-plugin": "1.4.0",
"node-sass": "5.0.0",
"parse-link-header": "^1.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "^4.1.0",
"react-paginate": "^7.1.2",
"react-redux": "^7.2.4",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"sass-loader": "11.0.1",
"typescript": "4.2.4",
"webpack-merge": "5.7.3",
"webpackbar": "5.0.0-3"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/lodash": "^4.14.169",
"@types/parse-link-header": "^1.0.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-paginate": "^6.2.1",
"@types/react-router-config": "^5.0.2",
"@types/react-router-dom": "^5.1.7",
"@types/redux-logger": "^3.0.8",
"@types/webpack-env": "1.16.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"@types/node": "12.7.2",
"autoprefixer": "^10.2.5",
"babel-loader": "8.2.2",
"conventional-changelog-cli": "^2.1.1",
"css-loader": "5.2.4",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"html-webpack-plugin": "5.3.1",
"husky": "^6.0.0",
"less": "4.1.1",
"less-loader": "8.1.1",
"lint-staged": "^11.0.0",
"path": "^0.12.7",
"postcss-loader": "5.2.0",
"postcss-normalize": "^10.0.0",
"postcss-preset-env": "6.7.0",
"prettier": "^2.3.0",
"react-dev-utils": "^11.0.4",
"resolve-url-loader": "^4.0.0",
"style-loader": "2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"webpack": "5.28.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.2"
},
"browserslist": [
">0.2%",
"not dead",
"ie >= 9",
"not op_mini all"
]
}