-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.19 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
{
"name": "proxyz",
"version": "0.1.0",
"description": "一个代理设置工具",
"scripts": {
"start": "parcel watch src/manifest.json --host localhost",
"build": "parcel build src/manifest.json --no-source-maps",
"reporter": "parcel build src/manifest.json --no-source-maps --detailed-report 20 --reporter @parcel/reporter-bundle-analyzer",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@parcel/config-webextension": "^2.12.0",
"@parcel/reporter-bundle-analyzer": "^2.12.0",
"@parcel/transformer-inline-string": "^2.12.0",
"@parcel/transformer-sass": "^2.12.0",
"@types/chrome": "^0.0.266",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/tldjs": "^2.3.4",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"buffer": "^6.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"events": "^3.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"parcel": "^2.12.0",
"prettier": "3.2.5",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"stylelint": "^16.4.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.4.5",
"url": "^0.11.0"
},
"lint-staged": {
"*.ts": [
"prettier --list-different",
"eslint"
],
"*.{css,scss}": [
"stylelint"
]
},
"dependencies": {
"@ant-design/icons": "^5.3.6",
"@ant-design/pro-components": "^2.7.1",
"@reduxjs/toolkit": "^2.2.3",
"ahooks": "^3.7.11",
"antd": "^5.16.4",
"antd-style": "^3.6.2",
"clsx": "^2.1.1",
"idb": "^8.0.0",
"immer": "^10.1.1",
"localforage": "^1.10.0",
"lru-cache": "^10.2.1",
"match-sorter": "^6.3.4",
"minimatch": "^9.0.4",
"mitt": "^3.0.1",
"monaco-editor": "^0.48.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-monaco-editor": "^0.55.0",
"react-redux": "^9.1.1",
"react-router-dom": "^6.23.0",
"sort-by": "^1.2.0",
"tldjs": "^2.3.1",
"uuid": "^9.0.1"
}
}