-
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.36 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.36 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": "xyz.dev",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --dir src --fix",
"prepare": "husky install",
"db:generate": "pnpm drizzle-kit generate:pg",
"db:check": "pnpm drizzle-kit check:pg",
"db:migrate": "pnpm tsx ./src/db/migrate.ts",
"db:seed": "pnpm tsx ./src/db/seed.ts"
},
"dependencies": {
"@faker-js/faker": "8.3.1",
"@heroicons/react": "2.0.18",
"@vercel/postgres": "0.5.1",
"drizzle-orm": "0.29.1",
"next": "14.0.4",
"pg": "8.11.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@next/env": "14.0.4",
"@types/node": "20.10.5",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "6.14.0",
"@typescript-eslint/parser": "6.14.0",
"autoprefixer": "10.4.16",
"drizzle-kit": "0.20.6",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"postcss": "8.4.32",
"prettier": "3.1.1",
"prettier-plugin-tailwindcss": "0.5.9",
"sharp": "0.33.1",
"tailwindcss": "3.3.6",
"tsx": "4.6.2",
"typescript": "5.3.3"
},
"packageManager": "pnpm@8.12.0",
"engines": {
"node": "^20.0.0 || ^22.0.0",
"pnpm": "^8.12.0"
}
}