-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 2.87 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "ts-nextjs-tailwind-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:start": "json-server --watch ./src/data/mock/db.json -p 5000",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"format": "prettier -w .",
"format:check": "prettier -c .",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"@hookform/resolvers": "^2.9.11",
"@next/font": "^13.1.1",
"@prisma/client": "^4.8.1",
"@react-three/drei": "^9.51.22",
"@react-three/fiber": "^8.10.0",
"@tanstack/react-query": "^4.28.0",
"@tanstack/react-table": "^8.7.6",
"@tippyjs/react": "^4.2.6",
"@vercel/analytics": "^0.1.7-beta.1",
"@vercel/og": "^0.0.23",
"clsx": "^1.2.1",
"encoding": "^0.1.13",
"firebase": "^9.17.1",
"firebase-admin": "^11.5.0",
"framer-motion": "^9.0.2",
"google-spreadsheet": "^3.3.0",
"hamburger-react": "^2.5.0",
"html2canvas": "^1.4.1",
"js-cookie": "^3.0.1",
"maath": "^0.5.1",
"next": "^13.2.1",
"qrcode": "^1.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.3.5",
"react-hook-form": "^7.43.5",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.7.1",
"react-qr-code": "^2.0.11",
"react-qr-reader": "^3.0.0-beta-1",
"recharts": "^2.6.2",
"swiper": "^9.0.5",
"tailwind-merge": "^1.8.1",
"three": "^0.148.0",
"zod": "^3.21.4",
"zustand": "^4.3.7"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@svgr/webpack": "^6.5.1",
"@tailwindcss/forms": "^0.5.3",
"@types/google-spreadsheet": "^3.3.1",
"@types/js-cookie": "^3.0.3",
"@types/react": "^18.0.26",
"@types/three": "^0.148.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.30.0",
"eslint-config-next": "^13.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"json-server": "^0.17.3",
"lint-staged": "^12.5.0",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.8.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
],
"**/*.{json,css,scss,md,webmanifest}": [
"prettier -w"
]
},
"prisma": {
"seed": "node prisma/seeder/seat-seed.js"
}
}