-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.24 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
{
"name": "fruit",
"version": "1.1.0",
"main": "index.js",
"author": "thjxs <[email protected]>",
"scripts": {
"clean": "rimraf dist/",
"cleanImg": "node script/clear",
"build": "npm run clean && cross-env NODE_ENV=production webpack --mode=production ",
"wstart": "webpack serve",
"start": "electron .",
"test": "mocha"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jshintConfig": {
"esversion": 9
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote",
"jshint"
],
"*.css": [
"prettier --write"
]
},
"devDependencies": {
"choo": "^7.1.0",
"copy-webpack-plugin": "^6.3",
"cross-env": "^7.0.2",
"css-loader": "^5.0",
"cssnano": "^4.1.10",
"electron": "^15.5",
"html-webpack-plugin": "^4.5",
"husky": "^4.3",
"jshint": "^2.11.0",
"lint-staged": "^10.5",
"mini-css-extract-plugin": "^1.3",
"mocha": "^8.2",
"postcss-loader": "^4.0.0",
"prettier": "^2.1",
"rimraf": "^3.0.2",
"tailwindcss": "^1.9.0",
"webpack": "^5.4",
"webpack-cli": "^4.2",
"webpack-dev-server": "^3.10.3"
},
"license": "MIT",
"dependencies": {
"axios": "^0.21",
"uuid": "^8.0"
}
}