-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "webdict",
"version": "1.2.0",
"author": "李鸿章<paindo@163.com>",
"license": "MIT",
"scripts": {
"sass": "sass $INIT_CWD:$INIT_CWD; sass --watch $INIT_CWD:$INIT_CWD",
"pack": "NODE_OPTIONS=--openssl-legacy-provider webpack --config extension/webpack.config.js --watch",
"locale": "python3 extension/_locales.py"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json,ts,tsx,css,scss,md,html}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/chrome": "^0.0.263",
"@types/lodash": "^4.14.117",
"@types/node": "^10.10.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-import": "1.7.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"mini-css-extract-plugin": "^0.4.2",
"prettier": "^1.15.3",
"sass": "^1.38.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^8.4.0",
"typescript": "^4.9.5",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.8.2"
},
"dependencies": {
"hife": "^1.1.1",
"lodash": "^4.17.11"
}
}