-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.16 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
{
"name": "terrarossa",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:test": "NEXT_PUBLIC_APP_ENV='test' next dev",
"build": "NEXT_PUBLIC_APP_ENV='production' next build",
"build:test": "NEXT_PUBLIC_APP_ENV='test' next build",
"start": "next start",
"postinstall": "prisma generate",
"lint": "next lint",
"cypress": "NEXT_PUBLIC_APP_ENV='test' cypress open",
"cypress-mobile": "NEXT_PUBLIC_APP_ENV='test' cypress open --config viewportWidth=375,viewportHeight=667",
"cypress-run-e2e": "NEXT_PUBLIC_APP_ENV='test' npx cypress run --config video=false",
"cypress-run-component": "NEXT_PUBLIC_APP_ENV='test' npx cypress run --config video=false --component",
"db:seed": "npx prisma db push && npx prisma db seed",
"prettier": "prettier --write .",
"prepare": "husky",
"db:seed:demo": "ts-node --compiler-options '{\"module\":\"CommonJS\"}' prisma/seed-demo.ts"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.679.0",
"@aws-sdk/s3-request-presigner": "^3.679.0",
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.13.0",
"@fontsource/roboto": "^5.1.0",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/react": "^6.1.15",
"@fullcalendar/resource": "^6.1.15",
"@fullcalendar/resource-timegrid": "^6.1.15",
"@fullcalendar/scrollgrid": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@libsql/client": "^0.14.0",
"@mui/icons-material": "^6.1.5",
"@mui/material": "^6.1.5",
"@mui/system": "^6.1.5",
"@mui/x-data-grid": "^7.21.0",
"@mui/x-date-pickers": "^7.21.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/adapter-libsql": "^5.21.1",
"@prisma/client": "^5.21.1",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-query-devtools": "^4.36.1",
"@trpc/client": "10.45.2",
"@trpc/next": "10.45.2",
"@trpc/react-query": "10.45.2",
"@trpc/server": "10.45.2",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"next": "^15.0.1",
"next-auth": "^4.24.10",
"nodemailer": "^6.9.15",
"pino": "^9.5.0",
"pino-logflare": "^0.4.2",
"process": "^0.11.10",
"react": "18.3.1",
"react-dom": "18.3.1",
"superjson": "2.2.1",
"use-sync-external-store": "^1.2.2",
"util": "^0.12.5",
"zod": "^3.23.8",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/eslint": "^8.56.12",
"@types/node": "^22.7.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"cypress": "~13.15.1",
"eslint": "^8.57.1",
"eslint-config-next": "^15.0.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"prisma": "^5.21.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"ct3aMetadata": {
"initVersion": "7.7.0"
}
}