-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.03 KB
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
{
"name": "electron-project-template",
"version": "0.1.0",
"description": "A template used by the electron framework",
"main": "dist/main/index.js",
"scripts": {
"dev": "chcp 65001 && rimraf dist && vite",
"build": "rimraf dist && vite build",
"fix": "electron-fix start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "npm run test:main && npm run test:render",
"test:render": "vitest run -r src/render --passWithNoTests",
"test:main": "vitest run -r src/main --passWithNoTests",
"test:e2e": "vitest run",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder uninstall-app-deps"
},
"dependencies": {
"crypto-ts": "^1.0.2",
"einf": "^1.3.0",
"electron-log": "^4.4.8",
"electron-updater": "^5.3.0",
"jsonfile": "^6.1.0",
"lodash-es": "^4.17.21",
"moment": "^2.29.4",
"sqlite3": "^5.1.2",
"vue": "^3.2.38"
},
"devDependencies": {
"@ant-design/icons-vue": "^6.1.0",
"@lightwing/eslint-config": "0.0.7",
"@types/lodash-es": "^4.17.6",
"@vitejs/plugin-vue": "3.1.0",
"@vue/compiler-sfc": "3.2.39",
"@vue/test-utils": "2.0.2",
"ant-design-vue": "^3.2.12",
"electron": "^20.1.4",
"electron-builder": "23.3.3",
"electron-debug": "^3.2.0",
"electron-devtools-installer": "^3.2.0",
"eslint": "8.22.0",
"happy-dom": "6.0.4",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"lint-staged": "13.0.3",
"naive-ui": "^2.34.3",
"parse-json": "^6.0.2",
"playwright": "1.26.0",
"rimraf": "3.0.2",
"sequelize": "^6.23.0",
"simple-git-hooks": "2.8.0",
"tslib": "2.4.0",
"typescript": "4.8.3",
"vite": "3.1.3",
"vite-plugin-doubleshot": "0.0.6",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vitest": "0.23.4",
"vue-router": "~4.0.x",
"vue-tsc": "0.40.13",
"electron-fix": "^1.1.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md,json,yml}": [
"eslint --fix"
]
}
}