-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.29 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.29 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
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
{
"name": "ss-provider",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"typecheck:server": "npm run typecheck --prefix server",
"check": "npm run lint && npm run typecheck && npm run typecheck:server",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"postinstall": "prisma generate",
"db:seed": "node --env-file=.env prisma/seed.mjs",
"prepare": "husky install",
"format": "prettier --write . --ignore-path .gitignore"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@neondatabase/serverless": "^1.1.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.75.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.217.0",
"@opentelemetry/sdk-node": "^0.217.0",
"@prisma/adapter-neon": "^7.5.0",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@prisma/config": "^7.5.0",
"@types/pg": "^8.16.0",
"@upstash/qstash": "^2.10.1",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"@web-kits/audio": "^0.1.0",
"better-auth": "^1.6.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.3.1",
"framer-motion": "^12.36.0",
"gsap": "^3.14.2",
"lucide-react": "^0.577.0",
"motion": "^12.36.0",
"next": "^16.2.4",
"prom-client": "^15.1.3",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-easy-crop": "^5.5.6",
"shadcn": "^4.0.6",
"socket.io-client": "^4.8.3",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"vitest": "^4.1.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20.19.37",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/typescript": "^0.4.29",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"husky": "^8.0.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"prisma": "^7.5.0",
"socket.io": "^4.8.3",
"tailwindcss": "^4",
"typescript": "^5.9.3"
}
}