-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 912 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 912 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
{
"name": "workspace",
"version": "1.0.0",
"description": "A lightweight polling application built with Next.js 14, TypeScript, Tailwind CSS, and Prisma.",
"main": "next.config.js",
"scripts": {
"dev": "next dev --port 5000",
"build": "next build",
"start": "prisma generate && next start -p 5001",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.13.0",
"@slack/web-api": "^7.9.3",
"@types/node": "^24.2.1",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"autoprefixer": "^10.4.21",
"next": "^15.4.6",
"postcss": "^8.5.6",
"prisma": "^6.13.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwindcss": "^3.4.17",
"tweetnacl": "^1.0.3",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"zod": "^4.0.17"
}
}