-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "chrome-extension",
"license": "MIT",
"private": true,
"scripts": {
"watch": "webpack --progress --mode development --watch",
"commit": "git add . && git-cz",
"commit:ignore": "git add . && git-cz -n"
},
"dependencies": {
"core-js": "^3.21.1",
"element-plus": "^2.1.0",
"git-cz": "^4.9.0",
"unplugin-auto-import": "^0.15.2",
"unplugin-vue-define-options": "^1.3.3",
"vue": "^3.2.31"
},
"devDependencies": {
"prettier": "^2.6.2",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jquery": "^3.5.14",
"@types/node": "^17.0.25",
"@types/webpack": "^5.28.0",
"@vespaiach/axios-fetch-adapter": "^0.2.2",
"axios": "^0.26.1",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"jquery": "^3.6.0",
"less": "^3.11.1",
"less-loader": "^10.2.0",
"pinia": "^2.0.13",
"style-loader": "^3.3.1",
"sucrase": "^3.20.3",
"typescript": "^4.6.2",
"unplugin-vue-components": "^0.18.0",
"url-loader": "^4.1.1",
"vue-loader": "^17.0.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,md,json}": "eslint --fix"
}
}