-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "tinkerspace_carnival",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postinstall": "npx prisma generate",
"start": "next start",
"lint": "eslint . --ext ts --ext tsx",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write \"**/*.{js,ts,tsx}\""
},
"dependencies": {
"@prisma/client": "^5.19.1",
"@redux-devtools/extension": "^3.3.0",
"@reduxjs/toolkit": "^2.2.7",
"@tanstack/react-query": "^5.56.2",
"@trpc/client": "^11.0.0-rc.522",
"@trpc/react-query": "^11.0.0-rc.522",
"@trpc/server": "^11.0.0-rc.522",
"@tsparticles/slim": "^3.5.0",
"client-only": "^0.0.1",
"next": "14.2.13",
"numeral": "^2.0.6",
"react": "^18",
"react-canvas-confetti": "^2.0.7",
"react-dom": "^18",
"react-dom-confetti": "^0.2.0",
"react-hot-toast": "^2.4.1",
"react-redux": "^9.1.2",
"redux": "^5.0.1",
"server-only": "^0.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.16.5",
"@types/numeral": "^2.0.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.13",
"postcss": "^8",
"prisma": "^5.19.1",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}