-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.73 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.73 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
{
"name": "clear",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.11.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix",
"type-check": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "tsx -r dotenv/config scripts/migrate.ts dotenv_config_path=.env.local",
"db:seed": "tsx -r dotenv/config scripts/seed.ts dotenv_config_path=.env.local",
"db:studio": "drizzle-kit studio",
"db:generate-key": "tsx -r dotenv/config scripts/generate-api-key.ts dotenv_config_path=.env.local",
"db:add-categories": "tsx -r dotenv/config scripts/add-new-categories.ts dotenv_config_path=.env.local",
"generate:splash": "tsx scripts/generate-splash-screens.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@ducanh2912/next-pwa": "^10.2.9",
"@phosphor-icons/react": "^2.1.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"idb": "^8.0.3",
"next": "16.1.3",
"next-intl": "^4.7.0",
"next-themes": "^0.4.6",
"postgres": "^3.4.8",
"react": "19.2.3",
"react-dom": "19.2.3",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.8",
"eslint": "^9",
"eslint-config-next": "16.1.3",
"sharp": "^0.34.5",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
}
}