-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.78 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.78 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
{
"name": "next-base",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint",
"format": "prettier src/ --write",
"db:migrate": "DB_MIGRATING=true drizzle-kit migrate",
"db:recreate": "echo 'Destroying existing local database stack' && docker compose down && sleep 2 && echo 'Removing local database data' && rimraf ./docker-data && sleep 1 && echo 'Recreating database stack' && docker compose up -d && echo 'Waiting for service start before appying migrations...' && sleep 4 && DB_MIGRATING=true drizzle-kit migrate"
},
"dependencies": {
"@heroui/react": "^2.8.6",
"@t3-oss/env-nextjs": "^0.13.10",
"@tabler/icons-react": "^3.36.0",
"dotenv": "^17.2.3",
"dotenv-expand": "^12.0.3",
"drizzle-orm": "^0.45.1",
"framer-motion": "^12.23.26",
"jiti": "^2.6.1",
"jsonwebtoken": "^9.0.3",
"jwk-to-pem": "^2.0.7",
"next": "16.1.6",
"next-themes": "^0.4.6",
"pem-jwk": "^2.0.0",
"postgres": "^3.4.7",
"qs": "^6.15.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"uuid": "^13.0.0",
"zod": "^4.2.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/jwk-to-pem": "^2.0.3",
"@types/node": "^20",
"@types/pem-jwk": "^2.0.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.8",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.23.1",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"rimraf": "^6.1.2",
"tailwindcss": "^4",
"typescript": "^5"
}
}