-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.17 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.17 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "codac",
"version": "0.1.0",
"description": "Comprehensive learning management system and community platform for Code Academy Berlin",
"private": true,
"pnpm": {
"onlyBuiltDependencies": ["@tailwindcss/oxide"]
},
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "biome format --write .",
"check": "biome check --write .",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --coverage --watchAll=false --ci --passWithNoTests",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:ci": "playwright test --reporter=github",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"db:generate": "drizzle-kit generate --config=drizzle.config.ts",
"db:push": "drizzle-kit push --config=drizzle.config.ts",
"db:pull": "drizzle-kit introspect --config=drizzle.config.ts",
"db:drop": "drizzle-kit drop --config=drizzle.config.ts",
"db:migrate": "drizzle-kit migrate --config=drizzle.config.ts",
"db:update": "drizzle-kit up --config=drizzle.config.ts",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.8.0",
"@hookform/resolvers": "^3.10.0",
"@platejs/basic-nodes": "^49.0.0",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-collapsible": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-hover-card": "^1.1.14",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-navigation-menu": "^1.2.5",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-tooltip": "^1.1.8",
"@types/node": "^22.13.8",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"axios": "^1.8.1",
"bcrypt-ts": "^5.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.0.1",
"drizzle-orm": "^0.36.4",
"geist": "^1.3.1",
"lucide-react": "^0.454.0",
"next": "^15.3.4",
"next-auth": "5.0.0-beta.25",
"next-themes": "^0.4.6",
"nuqs": "^2.0.0",
"platejs": "^49.0.0",
"postgres": "^3.4.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.8",
"react-hook-form": "^7.54.2",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@playwright/test": "^1.48.2",
"@tailwindcss/postcss": "^4.1.11",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"drizzle-kit": "^0.27.2",
"eslint": "^9.21.0",
"eslint-config-next": "^15.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"packageManager": "pnpm@10.12.4"
}