-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 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
{
"name": "vite-solid-electron",
"productName": "Electron",
"private": true,
"version": "1.0.0",
"description": "Vite SolidJS Electron boilerplate.",
"author": "ch99q <64793a1a@gmail.com>",
"license": "MIT",
"main": "dist/main/index.cjs",
"scripts": {
"dev": "node scripts/watch.mjs",
"build": "npm run typecheck && node scripts/build.mjs && electron-builder --config .electron-builder.config.js",
"typecheck": "tsc --noEmit --project packages/renderer/tsconfig.json"
},
"engines": {
"node": ">=14.17.0"
},
"dependencies": {
"@neodrag/solid": "^2.0.3",
"@thisbeyond/solid-dnd": "^0.7.5",
"electron-store": "^8.0.1",
"react-beautiful-dnd": "^13.1.1"
},
"devDependencies": {
"@solidjs/router": "^0.10.9",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@vitejs/plugin-react": "^1.2.0",
"autoprefixer": "^10.4.2",
"electron": "^17.0.0",
"electron-builder": "^22.14.13",
"postcss": "^8.4.6",
"solid-js": "^1.3.7",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.5",
"vite": "^2.8.0",
"vite-plugin-resolve": "^1.4.4",
"vite-plugin-solid": "^2.2.5"
},
"env": {
"//": "Used in build scripts",
"PORT": 3344
}
}