generated from ArcherGu/fast-vite-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.69 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
{
"name": "fast-vite-electron",
"version": "0.0.1",
"packageManager": "[email protected]",
"description": "Vite + Electron with esbuild, so fast! ⚡",
"main": "dist/main/index.js",
"scripts": {
"dev": "rimraf dist && vite",
"build": "rimraf dist && vite build",
"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 install-app-deps"
},
"dependencies": {
"autoprefixer": "^10.4.8",
"axios": "^0.27.2",
"einf": "^1.1.1",
"monaco-editor": "^0.34.0",
"naive-ui": "^2.33.2",
"node-plantuml": "^0.9.0",
"pinia": "^2.0.21",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"vite-plugin-monaco-editor": "^1.1.0",
"vue": "^3.2.33"
},
"devDependencies": {
"@lightwing/eslint-config": "0.0.4",
"@vitejs/plugin-vue": "3.0.3",
"@vue/compiler-sfc": "3.2.38",
"@vue/test-utils": "2.0.2",
"electron": "20.1.0",
"electron-builder": "23.3.3",
"eslint": "8.23.0",
"happy-dom": "6.0.4",
"lint-staged": "13.0.3",
"playwright": "1.25.1",
"pnpm": "7.9.5",
"rimraf": "3.0.2",
"simple-git-hooks": "2.8.0",
"tslib": "2.4.0",
"typescript": "4.7.4",
"vite": "3.0.9",
"vite-plugin-doubleshot": "0.1.0-beta.2",
"vitest": "0.22.1",
"vue-tsc": "0.40.5"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md,json,yml}": [
"eslint --fix"
]
}
}