-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.89 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
{
"name": "template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "next lint --ignore-path .gitignore --cache",
"format": "prettier --ignore-path .gitignore \"src/**/*.{js,ts,jsx,tsx}\" --write --cache",
"prepare": "husky install",
"postinstall": "prisma generate",
"db:up": "npx prisma db seed",
"db:down": "npx prisma migrate reset --skip-seed --force",
"db:gui": "npx prisma studio",
"db:regenerate": "pnpm db:down && pnpx prisma db push && pnpm db:up"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --fix --ignore-path .gitignore",
"prettier --write --ignore-path .gitignore"
]
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "4.13.0",
"@tanstack/react-query": "^4.29.11",
"@trpc/client": "^10.28.0",
"@trpc/next": "^10.28.0",
"@trpc/react-query": "^10.28.0",
"@trpc/server": "^10.28.0",
"@vercel/analytics": "^1.0.1",
"next": "13.4.1",
"next-auth": "^4.22.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intersection-observer": "^9.5.1",
"sharp": "^0.32.1",
"superjson": "^1.12.3",
"zod": "^3.21.4"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@mermaid-js/mermaid-cli": "^10.2.2",
"@types/node": "18.8.2",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.13",
"class-variance-authority": "^0.4.0",
"daisyui": "^2.52.0",
"eslint": "8.24.0",
"eslint-config-next": "13.3.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prisma": "^4.13.0",
"prisma-erd-generator": "^1.2.2",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"typescript": "4.8.4"
}
}