-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.8 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.8 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
{
"name": "studysync",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "NEXT_TELEMETRY_DISABLED=1 NEXT_DISABLE_ESLINT=1 next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"typecheck": "tsc -p tsconfig.json --noEmit",
"format": "prettier --write .",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"seed": "tsx prisma/seed.ts",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@playwright/test": "^1.55.1",
"@tailwindcss/postcss": "^4.1.13",
"@types/bun": "^1.2.23",
"@types/eslint": "^9.6.1",
"@types/node": "^24.6.0",
"@types/prettier": "^2.7.3",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^4.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.13",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.16.3",
"@stripe/stripe-js": "^7.9.0",
"@tanstack/react-query": "^5.90.2",
"clsx": "^2.1.1",
"next": "^14.2.33",
"next-auth": "^4.24.11",
"prisma": "^6.16.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^3.2.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"stripe": "^18.5.0",
"zod": "^4.1.11"
}
}