-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
108 lines (108 loc) · 3.97 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
{
"name": "scriptcat",
"version": "0.16.6",
"description": "脚本猫,一个可以执行用户脚本的浏览器扩展,万物皆可脚本化,让你的浏览器可以做更多的事情!",
"author": "CodFrm",
"license": "GPLv3",
"scripts": {
"test": "jest --coverage",
"lint": "eslint --ext .js,.ts,.tsx src/",
"dev": "concurrently \"webpack --mode development --config ./webpack/webpack.dev.ts\" \"webpack --mode development --config ./webpack/webpack.inject.dev.ts\"",
"build": "webpack --mode production --config ./webpack/webpack.prod.ts && concurrently \"npm run build:linter\" \"npm run build:inject && npm run build:no-split\"",
"build:linter": "webpack --mode production --config ./webpack/webpack.linter.ts",
"build:inject": "webpack --mode production --config ./webpack/webpack.inject.ts",
"build:no-split": "webpack --mode production --config ./webpack/webpack.no.split.ts",
"dev:linter": "webpack --mode development --config ./webpack/webpack.linter.dev.ts",
"pack": "node ./build/pack.js",
"changlog": "gitmoji-changelog",
"crowdin": "crowdin",
"i18n": "concurrently \"webpack --mode development --config ./webpack/webpack.i18n.ts\" \"webpack --mode development --config ./webpack/webpack.inject.dev.ts\""
},
"dependencies": {
"@arco-design/web-react": "^2.51.1",
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/sortable": "^7.0.1",
"@dnd-kit/utilities": "^3.2.0",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"axios": "^1.4.0",
"cron": "^2.4.3",
"crx": "^5.0.1",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.4",
"dexie": "^3.2.3",
"i18next": "^23.4.4",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"monaco-editor": "^0.37.1",
"monaco-vim": "^0.3.4",
"pako": "^2.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.1.0",
"react-icons": "^5.2.1",
"react-joyride": "^2.5.5",
"react-router-dom": "^6.3.0",
"semver": "^7.3.8",
"unocss": "^0.51.2",
"uuid": "^8.3.2",
"webdav": "^4.11.0",
"yaml": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-proposal-decorators": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/chrome": "^0.0.193",
"@types/cron": "^2.0.0",
"@types/crypto-js": "^4.1.1",
"@types/eslint": "^8.4.10",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.17.6",
"@types/pako": "^2.0.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/semver": "^7.3.12",
"@types/uuid": "^8.3.4",
"@types/webpack-bundle-analyzer": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@unocss/webpack": "^0.51.2",
"axios-mock-adapter": "^1.21.2",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
"concurrently": "^7.5.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-userscripts": "^0.2.12",
"eslint-webpack-plugin": "^3.2.0",
"fake-indexeddb": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"mock-xmlhttprequest": "^8.1.0",
"monaco-editor-locales-plugin": "^0.0.3",
"node-polyfill-webpack-plugin": "^2.0.1",
"prettier": "^2.7.1",
"progress-bar-webpack-plugin": "^2.1.0",
"raw-loader": "^4.0.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0"
}
}