-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "fast-vite-nestjs-electron",
"version": "0.0.1",
"packageManager": "pnpm@8.8.0",
"description": "Vite + Electron with Doubleshot, so fast! ⚡",
"main": "dist/main/index.js",
"scripts": {
"dev": "rimraf dist && vite",
"build": "rimraf dist && vite build",
"start": "vite preview",
"preview": "npm run start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@doubleshot/nest-electron": "^0.2.3",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/microservices": "^10.0.0",
"@nestjs/typeorm": "^10.0.0",
"electron-store": "^8.1.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"sqlite3": "^5.1.6",
"typeorm": "^0.3.17",
"vue": "^3.2.47"
},
"devDependencies": {
"@lightwing/eslint-config": "^0.0.23",
"@vitejs/plugin-vue": "4.3.4",
"@vue/compiler-sfc": "3.3.4",
"electron": "26.2.2",
"electron-builder": "24.6.4",
"eslint": "8.50.0",
"lint-staged": "14.0.1",
"rimraf": "^5.0.4",
"simple-git-hooks": "2.9.0",
"typescript": "5.2.2",
"vite": "4.4.9",
"vite-plugin-doubleshot": "0.0.12",
"vue-tsc": "1.8.15"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md,json,yml}": [
"eslint --fix"
]
}
}