-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.09 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
{
"name": "beatricecox.com",
"private": false,
"scripts": {
"dev": "npm run prisma:generate && next dev --turbo",
"build": "npm run prisma:generate && npm run prisma:migrate:deploy && next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format:check": "prettier --check src",
"format": "prettier --write src",
"typecheck": "tsc --project tsconfig.json --noEmit",
"prisma:generate": "prisma generate --schema=./src/prisma/schema.prisma",
"prisma:migrate-dev": "prisma migrate dev --schema=./src/prisma/schema.prisma",
"prisma:migrate:deploy": "prisma migrate deploy --schema=./src/prisma/schema.prisma",
"codegen": "graphql-codegen --config codegen.ts"
},
"engines": {
"npm": ">=10.0.0",
"node": ">=20.0.0"
},
"dependencies": {
"@apollo/client": "^3.11.1",
"@apollo/experimental-nextjs-app-support": "^0.11.2",
"@contentful/rich-text-plain-text-renderer": "^16.2.8",
"@contentful/rich-text-react-renderer": "^15.22.9",
"@headlessui/react": "^2.1.2",
"@next/third-parties": "^14.2.5",
"@prisma/client": "^5.17.0",
"@uidotdev/usehooks": "^2.4.1",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"classnames": "^2.5.1",
"contentful": "^10.12.15",
"framer-motion": "^11.3.19",
"next": "^14.2.5",
"prisma": "^5.17.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-responsive-carousel": "^3.2.23",
"schema-dts": "^1.1.2",
"server-only": "^0.0.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.3.3",
"@graphql-codegen/typescript": "^4.0.9",
"@types/node": "^22.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4"
}
}