-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 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
{
"name": "giving",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"debug": "NODE_OPTIONS='--inspect=9221' next dev",
"build": "next build",
"start": "next start",
"lint": "biome check --apply ./",
"format": "biome format --write ./",
"clean": "rm -rf .next package-lock.json",
"reset": "rm -rf .next package-lock.json node_modules",
"prisma-dev": "dotenv -e .env.development.local -- prisma",
"prisma-prod": "dotenv -e .env.production.local -- prisma"
},
"dependencies": {
"@headlessui/tailwindcss": "^0.2.0",
"@lucia-auth/adapter-postgresql": "^2.0.2",
"@lucia-auth/adapter-prisma": "^3.0.2",
"@lucia-auth/oauth": "^3.5.0",
"@prisma/client": "^5.7.1",
"@tremor/react": "^3.12.1",
"date-fns": "^3.0.0",
"effect": "2.0.0-next.61",
"lucia": "^2.7.5",
"lucide-react": "^0.298.0",
"next": "14.0.4",
"pino": "^8.17.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"ts-pattern": "^5.0.6",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@t3-oss/env-nextjs": "^0.7.1",
"@types/node": "20.10.5",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"autoprefixer": "^10.4.16",
"dotenv-cli": "^7.3.0",
"next-pwa": "^5.6.0",
"pino-pretty": "^10.3.0",
"postcss": "^8.4.32",
"prisma": "^5.7.1",
"tailwindcss": "^3.4.0",
"typescript": "5.3.3"
},
"prisma": {
"seed": "npx ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}