-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 885 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
{
"private": true,
"name": "electron-nextjs-app",
"description": "Boilerplate code for building Electron apps with Next.js, TypeScript, Tailwind, and Electron",
"version": "1.0.0",
"author": "Nick Lind <[email protected]>",
"main": "app/background.js",
"scripts": {
"dev": "nextron",
"build": "nextron build",
"package": "electron-builder install-app-deps"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.4",
"autoprefixer": "^10.4.8",
"electron-serve": "^1.1.0",
"electron-store": "^8.0.1",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/react": "^18.0.8",
"electron": "^18.2.0",
"electron-builder": "^23.0.3",
"next": "^12.1.6",
"nextron": "^8.1.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"typescript": "^4.6.4"
}
}