-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 1.85 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
{
"name": "simple-office-hours-queue",
"version": "0.1.0",
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"fmt": "npx @biomejs/biome check --apply ./src"
},
"dependencies": {
"@ably-labs/react-hooks": "^2.0.9",
"@chakra-ui/icons": "^2.0.10",
"@chakra-ui/react": "^2.3.4",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@formkit/auto-animate": "^1.0.0-beta.3",
"@next-auth/prisma-adapter": "^1.0.4",
"@prisma/client": "^5.0.0",
"@tanstack/react-query": "^4.10.0",
"@trpc/client": "10.0.0-proxy-beta.17",
"@trpc/next": "10.0.0-proxy-beta.17",
"@trpc/react": "10.0.0-proxy-beta.17",
"@trpc/server": "10.0.0-proxy-beta.17",
"ably": "^1.2.29",
"chakra-react-select": "^4.2.4",
"framer-motion": "^7.4.0",
"next": "^14.2.8",
"next-auth": "^4.24.5",
"nextjs": "^0.0.3",
"react": "18.2.0",
"react-confetti": "^6.1.0",
"react-csv-importer": "^0.7.1",
"react-dom": "18.2.0",
"react-icons": "^4.6.0",
"react-table": "^7.8.0",
"recharts": "^2.5.0",
"superjson": "^1.12.1",
"zod": "^3.22.3"
},
"devDependencies": {
"@biomejs/biome": "1.5.0",
"@types/node": "^18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/react-table": "^7.7.12",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "8.22.0",
"eslint-config-next": "12.3.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "2.7.1",
"prisma": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"ct3aMetadata": {
"initVersion": "5.13.1"
}
}