-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 863 Bytes
/
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
{
"name": "kartik-pages-typescript",
"version": "0.1.0",
"private": true,
"main": "electron/main.mjs",
"author": "Kartik + @codetorso",
"description": "Cool project",
"scripts": {
"dev": "concurrently -n \"NEXT,ELECTRON\" -c \"yellow,blue\" --kill-others \"next dev\" \"electron .\"",
"build": "next build && electron-builder",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"concurrently": "^8.2.2",
"electron": "^31.3.0",
"electron-builder": "^24.13.3",
"electron-serve": "^2.0.0",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"eslint": "^8",
"eslint-config-next": "14.2.5"
}
}