-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.58 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"private": true,
"name": "dj-talk",
"description": "My application description",
"version": "1.0.0",
"author": "Shin Dong Jae",
"main": "app/background.js",
"productName": "DJ-Talk",
"scripts": {
"dev": "nextron",
"build": "nextron build",
"build:mac": "nextron build --mac --x64",
"build:win64": "electron-builder --win nsis:x64",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"productName": "DJ Talk",
"appId": "net.jetalab.ex.startelectron",
"asar": true,
"mac": {
"target": [
"default"
]
},
"dmg": {
"title": "Start Electron"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": false,
"createDesktopShortcut": true
},
"directories": {
"buildResources": "./resources/installer/",
"output": "./dist/",
"app": "."
}
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"electron-serve": "^1.1.0",
"electron-store": "^8.1.0",
"firebase": "^9.16.0",
"react-redux": "^8.0.5"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"autoprefixer": "^10.4.7",
"electron": "^21.3.3",
"electron-builder": "^23.6.0",
"next": "^12.3.4",
"nextron": "^8.4.0",
"postcss": "^8.4.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.9.4"
}
}