-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
93 lines (93 loc) · 3.03 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
{
"name": "iciba-translate-userscript",
"version": "4.11.18",
"description": "iciba划词翻译",
"scripts": {
"dev": "yarn clean:dist && node ./build/dev-server.js",
"watch": "webpack --config ./build/config/webpack.dev.conf.js --watch",
"test": "jest",
"test:collect": "jest --collect-coverage",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"prebuild": "yarn clean:dist",
"build": "webpack --config ./build/config/webpack.prod.conf.js --progress && ts-node -P ./utils/tsconfig-util.json ./utils/addMetaData.ts",
"a": "yarn analyze",
"ac": "yarn analyze:nocat",
"analyze": "webpack --config ./build/config/webpack.prod.analyze.conf.js --progress",
"analyze:nocat": "cross-env cat=false webpack --config ./build/config/webpack.prod.analyze.conf.js --progress",
"clean:dist": "rimraf ./dist",
"lint": "eslint --ext \"js,jsx,ts,tsx,vue\" ./src/",
"postinstall": "rimraf ./node_modules/.cache/"
},
"keywords": [
"iciba",
"typescript",
"userscript",
"translate"
],
"author": "noe132",
"license": "MIT",
"dependencies": {
"@babel/runtime-corejs3": "^7.17.8",
"@types/crypto-js": "^4.1.1",
"base64-arraybuffer": "^1.0.2",
"crypto-js": "^4.1.1",
"eslint": "^8.12.0",
"fp-ts": "^2.11.9",
"io-ts": "^2.2.16",
"md5": "^2.3.0",
"resize-observer-polyfill": "^1.5.1",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.3",
"uuid": "^8.3.2",
"vue": "^3.2.31"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@types/greasemonkey": "^4.0.2",
"@types/jest": "^27.4.1",
"@types/md5": "^2.3.2",
"@types/node": "^17.0.23",
"@types/rimraf": "^3.0.2",
"@types/tampermonkey": "^4.0.5",
"@types/uuid": "^8.3.4",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/compiler-sfc": "^3.2.31",
"autoprefixer": "^10.4.4",
"babel-loader": "^8.2.4",
"babel-plugin-polyfill-corejs3": "^0.5.2",
"cache-loader": "^4.1.0",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"cssnano": "^5.1.5",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"express": "^4.17.3",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"jest": "^27.5.1",
"postcss": "^8.4.12",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.4.3",
"progress-bar-webpack-plugin": "^2.1.0",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"speed-measure-webpack-plugin": "^1.5.0",
"stats-webpack-plugin": "^0.7.0",
"string-replace-loader": "^3.1.0",
"thread-loader": "^3.0.4",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"vue-loader": "^17.0.0",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-chain": "^6.5.1",
"webpack-cli": "^4.9.2",
"webpack-dev-middleware": "^5.3.1",
"webpack-dev-server": "^4.7.4"
}
}