-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "ferry-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate:dev": "prisma migrate dev",
"migrate:prod": "prisma migrate deploy",
"prisma:generate": "prisma generate"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.22.11",
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@leenguyen/react-flip-clock-countdown": "^1.6.0",
"@mui/icons-material": "^6.1.0",
"@mui/material": "^6.1.0",
"@mui/material-nextjs": "^6.1.0",
"@next/third-parties": "^15.0.3",
"@prisma/client": "^5.19.1",
"contentful": "^11.1.4",
"date-fns": "^4.1.0",
"framer-motion": "^11.11.10",
"graphql-tag": "^2.12.6",
"lucide-react": "^0.441.0",
"next": "14.2.8",
"prisma": "^5.19.1",
"react": "^18",
"react-dom": "^18",
"react-medium-image-zoom": "^5.2.10",
"swiper": "^11.1.14",
"ua-parser-js": "^1.0.39"
},
"devDependencies": {
"@contentful/rich-text-types": "^16.8.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/ua-parser-js": "^0.7.39",
"eslint": "^8",
"eslint-config-next": "14.2.8",
"typescript": "^5"
},
"prisma": {
"schema": "src/server/libs/prisma/schema.prisma"
}
}