-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 993 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 993 Bytes
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
{
"name": "excuse-machine",
"version": "1.0.0",
"description": "A lighthearted web app for submitting and voting on creative excuses",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"db:push": "prisma db push",
"db:seed": "npx tsx prisma/seed.ts"
},
"keywords": [
"excuses",
"voting",
"nextjs"
],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.19.2",
"@tailwindcss/postcss": "^4.1.18",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@types/node": "^25.1.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"postcss": "^8.5.6",
"prisma": "^6.19.2",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}