-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "vite-react-nestjs-electron",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@9.15.4",
"description": "Vite + React + Electron with Doubleshot, so fast! ⚡",
"main": "dist/main/index.js",
"scripts": {
"dev": "rimraf dist && vite",
"debug": "rimraf dist && vite -- --dsb-debug",
"build": "rimraf dist && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@doubleshot/nest-electron": "^0.2.5",
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0",
"@nestjs/microservices": "^11.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@lightwing/eslint-config": "^1.0.93",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^34.0.0",
"electron-builder": "^25.1.8",
"eslint": "^9.16.0",
"lint-staged": "^15.2.10",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-plugin-doubleshot": "^0.0.17"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md,json,yml}": [
"eslint --fix"
]
}
}