-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.09 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
{
"name": "fantasy-baseball-dashboard",
"version": "1.0.0",
"description": "Fantasy Baseball Dashboard with AI integration",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "node --watch server/index.js",
"dev:client": "vite",
"build": "vite build",
"start": "npm run build && node server/index.js",
"electron:start": "electron .",
"dist": "npx vite build && npx electron-builder",
"deploy": "powershell -File deploy.ps1"
},
"build": {
"appId": "com.fantasybaseball.app",
"win": {
"target": "nsis"
},
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"server/**/*",
"main.js",
"package.json",
".env"
]
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"node-fetch": "^3.3.2",
"openai": "^6.32.0"
},
"devDependencies": {
"concurrently": "^8.2.2",
"electron": "^41.0.3",
"electron-builder": "^26.8.1",
"vite": "^5.4.0"
}
}