-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 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
{
"name": "marauders_scheduler",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "prisma generate && prisma db push && next build",
"start": "next start -p 3001",
"lint": "next lint",
"db:generate": "npx prisma generate",
"db:push": "npx prisma db push",
"db:migrate": "npx prisma migrate dev",
"db:studio": "npx prisma studio",
"postinstall": "prisma generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DrunkenCloud/marauders_scheduler.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/DrunkenCloud/marauders_scheduler/issues"
},
"homepage": "https://github.com/DrunkenCloud/marauders_scheduler#readme",
"dependencies": {
"@prisma/client": "^6.16.2",
"next": "15.5.9",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.13",
"@types/node": "^24.5.2",
"@types/react": "^19.1.15",
"@types/react-dom": "^19.1.9",
"autoprefixer": "^10.4.21",
"eslint": "^9.36.0",
"eslint-config-next": "^15.5.4",
"postcss": "^8.5.6",
"prisma": "^6.16.2",
"tailwindcss": "^4.1.13",
"tsx": "^4.19.2",
"typescript": "^5.9.2"
}
}