-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.21 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
{
"name": "vue3test",
"version": "1.0.1",
"description": "test",
"scripts": {
"test": "webpack-dev-server --mode=development ",
"test:build": "webpack --mode=production ",
"build": "node script/build.js build --mode=production && electron-builder --x64",
"dev": "node script/dev-runner.js dev --mode development",
"build:mac": "node script/build.js build --mode=production && electron-builder --mac --x64",
"prepare": "husky install",
"eslint": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --ext .js,.jsx,.ts,.tsx"
],
"*.{vue}": [
"eslint --fix --ext .vue"
]
},
"main": "dist/electron/main.js",
"keywords": [
"electron",
"vue3",
"webpack"
],
"author": "haokejie <https://github.com/haokejie>",
"license": "MIT",
"dependencies": {
"ant-design-vue": "^4.0.4",
"dotenv": "^16.3.1",
"uuid": "^9.0.1",
"vue": "^3.3.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.2",
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@vue/babel-plugin-jsx": "^1.1.5",
"@vue/compiler-sfc": "^3.3.4",
"@vue/tsconfig": "^0.4.0",
"babel-loader": "^9.1.3",
"commander": "^11.1.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"dotenv-webpack": "^8.0.1",
"electron": "^27.0.0",
"electron-builder": "^24.6.4",
"eslint": "^8.51.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.17.0",
"fork-ts-checker-webpack-plugin": "^9.0.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"less-loader": "^11.1.3",
"lint-staged": "^15.0.1",
"multispinner": "^0.2.1",
"node-loader": "^2.0.0",
"portfinder": "^1.0.32",
"prettier": "^3.0.3",
"process": "^0.11.10",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.16.6",
"vue-eslint-parser": "^9.3.2",
"vue-loader": "^17.3.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}