-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.62 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.62 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
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
72
{
"name": "escape-game",
"version": "1.0.0",
"description": "Escape Game Application",
"main": "electron/main.js",
"homepage": "./",
"scripts": {
"start": "electron .",
"dev:client": "cd client && npm start",
"dev:server": "cd server && npm start",
"build": "cd client && npm install && npm run build"
},
"keywords": [
"escape-game",
"electron"
],
"author": "",
"license": "ISC",
"dependencies": {
"canvas-confetti": "^1.9.4",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"mongodb-memory-server": "^9.5.0",
"react-responsive": "^10.0.1"
},
"devDependencies": {
"buffer": "^6.0.3",
"concurrently": "^8.2.2",
"crypto-browserify": "^3.12.1",
"electron": "^28.3.3",
"electron-builder": "^24.13.3",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"react-app-rewired": "^2.2.1",
"stream-browserify": "^3.0.0"
},
"build": {
"appId": "com.escapegame.app",
"productName": "EscapeGame",
"files": [
"electron/**/*",
"client/build/**/*",
"server/**/*",
"!server/node_modules",
"!client/node_modules"
],
"extraResources": [
{
"from": "server",
"to": "server",
"filter": [
"**/*",
"!node_modules"
]
}
],
"win": {
"target": "nsis",
"icon": "client/public/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"directories": {
"output": "dist"
}
}
}