-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.45 KB
/
package.json
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
{
"name": "rnny-starter-nextjs13",
"version": "1.0.0",
"description": "Starter for NextJS 14, Server Actions with React Query, Tailwind, TypeScript",
"author": "Ronny Rook",
"url": "https://rnny.nl/",
"type": "module",
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
},
"scripts": {
"start": "next start",
"dev": "next dev",
"build": "next build",
"lint": "next lint",
"db:generate": "drizzle-kit generate:pg --schema ./src/server/db/schema/index.ts --out=./src/server/migrations",
"db:studio": "drizzle-kit studio",
"docker:build": "docker build . -t rnnyrk-starter",
"docker:run": "docker run -d -p 3000:3000 rnnyrk-starter",
"prettier": "prettier --write '**/*.{js,ts,tsx}'",
"typecheck": "tsc --noEmit",
"test": "npx concurrently 'npm run lint' 'npm run typecheck'"
},
"dependencies": {
"@hookform/resolvers": "3.3.4",
"@neondatabase/serverless": "0.9.0",
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-dropdown-menu": "2.0.6",
"@radix-ui/react-label": "2.0.2",
"@radix-ui/react-popover": "1.0.7",
"@radix-ui/react-slot": "1.0.2",
"@t3-oss/env-nextjs": "0.9.2",
"@tanstack/react-query": "5.28.6",
"class-variance-authority": "0.7.0",
"clsx": "2.1.0",
"cmdk": "0.2.1",
"drizzle-orm": "0.30.4",
"next": "14.1.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.51.1",
"sharp": "0.33.3",
"zod": "3.22.4",
"zustand": "4.5.2"
},
"devDependencies": {
"@babel/core": "7.24.3",
"@babel/plugin-syntax-flow": "7.24.1",
"@babel/plugin-transform-react-jsx": "7.23.4",
"@ianvs/prettier-plugin-sort-imports": "4.2.1",
"@next/eslint-plugin-next": "14.1.4",
"@svgr/webpack": "8.1.0",
"@types/node": "20.11.30",
"@types/react": "18.2.69",
"@types/react-dom": "18.2.22",
"@types/webpack": "5.28.5",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"autoprefixer": "10.4.19",
"drizzle-kit": "0.20.14",
"drizzle-zod": "0.5.1",
"eslint": "8.57.0",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-sonarjs": "0.24.0",
"postcss": "8.4.38",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.12",
"tailwind-merge": "2.2.2",
"tailwindcss": "3.4.1",
"typescript": "5.4.3",
"webpack": "5.91.0"
},
"keywords": [],
"repository": {
"type": "git",
"url": ""
}
}