-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
29 lines (29 loc) · 925 Bytes
/
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
{
"scripts": {
"build": "yarn test && yarn build-v2 && yarn build-v3",
"build-v3": "MANIFEST_V3=true NODE_ENV=production webpack && zip -FS -r -j translate_onhover_v3 dist",
"build-v2": "MANIFEST_V3=false NODE_ENV=production webpack && zip -FS -r -j translate_onhover_v2 dist",
"dev": "webpack --watch",
"test": "node --test",
"lint": "eslint --ignore-pattern dist .",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "7.20.7",
"@babel/plugin-transform-classes": "7.8.6",
"babel-loader": "^9.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"debug": "^4.3.4",
"eslint": "^8.30.0",
"husky": "^8.0.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-encoding-plugin": "^0.3.1"
},
"dependencies": {
"date-fns": "^2.29.3",
"jquery": "^3.6.3"
}
}