generated from ArcherGu/fast-vite-nestjs-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "fast-vite-nestjs-electron",
"version": "0.0.1",
"packageManager": "pnpm@7.13.4",
"description": "Vite + Electron with Doubleshot, so fast! ⚡",
"main": "dist/main/index.js",
"scripts": {
"dev": "rimraf dist && vite",
"build": "rimraf dist && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@doubleshot/nest-electron": "^0.0.4",
"@nestjs/common": "^9.0.11",
"@nestjs/core": "^9.0.11",
"@nestjs/microservices": "^9.0.11",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.6",
"vue": "^3.2.38"
},
"devDependencies": {
"@lightwing/eslint-config": "0.0.8",
"@vitejs/plugin-vue": "3.1.2",
"@vue/compiler-sfc": "3.2.40",
"electron": "21.1.1",
"electron-builder": "23.6.0",
"eslint": "8.25.0",
"lint-staged": "13.0.3",
"pnpm": "7.13.4",
"rimraf": "3.0.2",
"simple-git-hooks": "2.8.0",
"typescript": "4.8.4",
"vite": "3.1.7",
"vite-plugin-doubleshot": "0.0.6",
"vue-tsc": "1.0.7"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md,json,yml}": [
"eslint --fix"
]
}
}