-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 4.27 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 4.27 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
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
96
97
98
99
100
101
102
103
104
{
"name": "summora",
"private": true,
"author": "@bennettdams",
"scripts": {
"/////////////// Meta": "",
"postinstall": "npm run p:generate",
"/////////////// DEPLOY": "",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"/////////////// RUN": "",
"dev": "next dev -p 3000",
"build": "next build",
"build:analyze": "ANALYZE=true npm run build",
"start": "next start -p 3000",
"devprod": "npm run build && npm run start",
"debug": "cross-env NODE_OPTIONS='--inspect' npm run dev",
"/////////////// CHECK": "",
"lint": "next lint",
"lint2": "eslint . --ext ts --ext tsx --ext js",
"type-check": "tsc --pretty --noEmit",
"tc": "npm run type-check",
"format": "prettier --write ./src/",
"format:check": "prettier --check ./src/",
"find-dead-exports": "npx ts-prune --ignore 'node_modules' | grep -v getStaticProps | grep -v getStaticPaths | grep -v getServerSideProps | grep -v default",
"/////////////// DB": "",
"p:dev": "npx prisma migrate dev --schema ./prisma/schema.prisma",
"p:dev-create": "npx prisma migrate dev --create-only --schema ./prisma/schema.prisma",
"p:create": "npx prisma migrate dev --create-only --schema ./prisma/schema.prisma",
"p:studio": "npx prisma studio --schema ./prisma/schema.prisma",
"p:reset": "npx prisma migrate reset --schema ./prisma/schema.prisma",
"p:reset-no-seed": "npx prisma migrate reset --skip-seed --schema ./prisma/schema.prisma",
"p:generate": "npx prisma generate --schema ./prisma/schema.prisma",
"p:format": "npx prisma format --schema ./prisma/schema.prisma",
"p:seed": "npx prisma db seed",
"p:validate": "npx prisma validate --schema ./prisma/schema.prisma",
"/////////////// SETUP": "",
"check-updates": "npx npm-check-updates -u",
"cu": "npm run check-updates",
"check": "npm run tc && npm run lint",
"clean-install": "rm -rf .next && rm -rf node_modules && npm i",
"depcheck": "npx depcheck"
},
"//scripts": [
"vercel-build is used in the CI/CD pipeline. It uses Vercel's build step to run the prisma migrate deploy command to apply the migrations before Vercel deploys the serverless functions. See https://www.prisma.io/docs/guides/deployment/deployment-guides/deploying-to-vercel#prisma-workflow"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.1004.0",
"@aws-sdk/s3-presigned-post": "^3.1004.0",
"@formkit/auto-animate": "^1.0.0-beta.6",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.3.1",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.7.1",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-query-devtools": "^4.36.1",
"@trpc/client": "^10.40.0",
"@trpc/next": "^10.40.0",
"@trpc/react-query": "^10.40.0",
"@trpc/server": "^10.40.0",
"@vercel/analytics": "^1.1.1",
"@vercel/speed-insights": "^1.0.2",
"next": "^14.2.35",
"next-auth": "^4.24.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-hook-form": "^7.44.3",
"sharp": "^0.32.6",
"superjson": "^1.13.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.0.4",
"@tailwindcss/forms": "^0.5.6",
"@tanstack/eslint-plugin-query": "^4.36.1",
"@types/node": "^18.16.3",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"autoprefixer": "^10.4.16",
"cross-env": "^7.0.3",
"eslint": "8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"prisma": "^5.7.1",
"tailwindcss": "^3.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"//devDependencies": [
"autoprefixer & postcss for Tailwind",
"eslint-config-next contains eslint-plugin-react, eslint-plugin-react-hooks and eslint-plugin-next. https://nextjs.org/docs/basic-features/eslint#eslint-config",
"ts-node is only used for Prisma's seeding functionality"
],
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}