This repository was archived by the owner on Oct 24, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 KB
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
{
"name": "tech-event-calendar",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "pnpm clean && next dev",
"build": "next build",
"clean": "rm -rf .next && prisma generate",
"start": "next start",
"lint": "next lint",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@fontsource/roboto": "4.5.8",
"@hookform/resolvers": "3.9.0",
"@mui/material": "5.16.7",
"@next-auth/prisma-adapter": "^1.0.6",
"@prisma/client": "4.16.2",
"@sinclair/typebox": "0.33.17",
"@turf/distance": "6.5.0",
"@turf/helpers": "6.5.0",
"@types/node": "18.19.59",
"@types/react": "18.3.4",
"@types/react-dom": "18.3.0",
"date-fns": "2.30.0",
"dotenv": "16.4.5",
"eslint": "8.57.1",
"eslint-config-next": "14.2.16",
"next": "14.2.16",
"next-auth": "4.24.9",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.53.1",
"typescript": "5.6.3",
"validator": "13.12.0"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.0",
"@types/validator": "13.12.2",
"cypress": "12.17.4",
"prisma": "4.16.2",
"ts-node": "10.9.2"
}
}