-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 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
{
"name": "online-reservation-system",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json}'",
"cosmos": "cosmos --expose-imports",
"cosmos-export": "cosmos-export --expose-imports",
"create:migration": "npx drizzle-kit generate:sqlite --schema=./schema.ts"
},
"dependencies": {
"@auth/drizzle-adapter": "^0.3.5",
"@heroicons/react": "^2.0.18",
"@tailwindcss/container-queries": "^0.1.1",
"@types/node": "20.8.9",
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
"autoprefixer": "10.4.16",
"better-sqlite3": "^9.0.0",
"clsx": "^2.0.0",
"drizzle-orm": "^0.28.6",
"eslint": "8.52.0",
"eslint-config-next": "^13.5.6",
"ms": "^2.1.3",
"next": "^13.5.6",
"next-auth": "^4.24.3",
"nodemailer": "^6.9.7",
"postcss": "8.4.31",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "^2.2.4",
"tailwindcss": "3.3.5",
"typescript": "5.2.2",
"validator": "^13.11.0",
"zod-form-data": "^2.0.2"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/better-sqlite3": "^7.6.6",
"@types/google-protobuf": "^3.15.9",
"@types/ms": "^0.7.33",
"@types/protobufjs": "^6.0.0",
"@types/validator": "^13.11.5",
"daisyui": "^3.9.3",
"drizzle-kit": "^0.19.13",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-perfectionist": "^2.2.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"react-cosmos": "^6.0.0-beta.5",
"react-cosmos-next": "^6.0.0-beta.5"
},
"volta": {
"node": "16.20.2"
}
}