-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"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": {
"@headlessui/react": "^1.6.6",
"@tailwindcss/typography": "^0.5.4",
"autoprefixer": "^10.4.8",
"axios": "^0.27.2",
"d3": "^7.6.1",
"electron-serve": "^1.1.0",
"electron-store": "^8.0.1",
"framer-motion": "^7.1.1",
"moment": "^2.29.4",
"papaparse": "^5.3.2",
"postcss": "^8.4.16",
"react-beautiful-dnd": "^13.1.0",
"react-colorful": "^5.6.0",
"react-dropzone": "^14.2.2",
"react-icons": "^4.4.0",
"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"
}
}