-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 2.42 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "dynasty-manager",
"version": "1.0.0",
"description": "CFB25 Dynasty Manager",
"type": "module",
"author": {
"name": "KN1ME"
},
"main": "electron/main.cjs",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"electron-dev": "concurrently \"cross-env NODE_ENV=development npm run dev\" \"wait-on http://localhost:3000 && cross-env NODE_ENV=development electron .\"",
"electron-build": "next build && electron-builder",
"electron-start": "cross-env NODE_ENV=production electron ."
},
"build": {
"appId": "com.example.dynasty-manager",
"productName": "Dynasty Manager",
"files": [
"electron/**/*",
"src/**/*",
"public/**/*",
"out/**/*",
"package.json"
],
"directories": {
"buildResources": "public",
"output": "dist"
},
"extraMetadata": {
"main": "electron/main.cjs"
},
"win": {
"target": "nsis"
},
"mac": {
"target": "dmg"
}
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"add": "^2.0.6",
"babel": "^6.23.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"command": "^0.0.5",
"electron-serve": "^2.0.0",
"electron-store": "^10.0.0",
"fix-esm": "^1.0.1",
"framer-motion": "^11.5.4",
"lucide-react": "^0.417.0",
"next": "14.2.5",
"next-pwa": "^5.6.0",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-tabs": "^6.0.2",
"recharts": "^2.12.7",
"shadcn-ui": "^0.9.1",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"tesseract.js": "^5.1.1",
"theme-ui": "^0.16.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/tesseract.js": "^2.0.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^31.3.1",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"wait-on": "^7.2.0"
}
}