-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 4.25 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "chrome-extensions-tpl",
"version": "0.0.1",
"description": "Muniz 浏览器插件 模版",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack serve --config ./build/dev.js",
"build": "cross-env NODE_ENV=production webpack --config ./build/pro.js",
"lint": "yarn run lint-eslint && yarn run lint-stylelint",
"lint-eslint": "eslint -c .eslintrc.js --ext .js {src,build}/**/*.js",
"lint-stylelint": "stylelint --config .stylelintrc.json src/**/*.{less,scss} --syntax scss",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"private": true,
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.15",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-constant-elements": "^7.13.13",
"@babel/plugin-transform-react-inline-elements": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"autoprefixer": "^10.2.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-dev-expression": "^0.2.2",
"babel-plugin-import": "^1.13.3",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^8.1.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"css-loader": "^5.2.4",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^8.2.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.0.4",
"express": "^4.17.1",
"file-loader": "^6.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "5.3.1",
"husky": "^6.0.0",
"less": "^4.1.1",
"less-loader": "^8.1.1",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^1.5.0",
"postcss-loader": "^5.2.0",
"postcss-normalize": "^9.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react-refresh": "^0.10.0",
"sass-resources-loader": "^2.2.1",
"ssestream": "1.1.0",
"style-loader": "^2.0.0",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^21.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"webpack": "^5.34.0",
"webpack-cli": "^4.6.0",
"webpack-dev-middleware": "^4.1.0",
"webpack-dev-server": "^3.11.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^5.7.3",
"webpackbar": "^5.0.0-3",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@csstools/normalize.css": "^11.0.1",
"antd": "^4.15.2",
"axios": "^0.21.1",
"axios-retry": "^3.1.9",
"classnames": "^2.3.1",
"core-js": "^3.10.2",
"css-minimizer-webpack-plugin": "^2.0.0",
"i18next": "^20.2.1",
"immer": "^9.0.1",
"mobx": "^6.2.0",
"mobx-react": "^7.1.0",
"rc-util": "^5.9.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.8.13",
"react-router-dom": "^5.2.0",
"use-immer": "^0.5.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js}": [
"eslint -c .eslintrc.js"
],
"*.{css,less,scss}": [
"stylelint --config .stylelintrc.json"
],
"*.{js,json,html,yml,css,less,scss,md}": [
"prettier --write"
]
}
}