This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
71 lines (71 loc) · 2.31 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
69
70
71
{
"private": true,
"scripts": {
"lint": "tsc --noEmit --incremental && next lint",
"switch-org": "pscale org switch <org>",
"start-shadow-db": "pscale connect <dbname> shadow --port 3310",
"start-dev-db": "pscale connect <dbname> development --port 3309",
"start-db": "concurrently --kill-others-on-fail \"npm:start-shadow-db\" \"npm:start-dev-db\"",
"dev": "concurrently --kill-others-on-fail \"npm:start-shadow-db\" \"npm:start-dev-db\" \"next dev\"",
"build": "next build",
"start": "next start",
"postinstall": "prisma generate",
"pre-commit": "tsc --noEmit --incremental && lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"@hookform/error-message": "^2.0.0",
"@hookform/resolvers": "^2.9.0",
"@next-auth/prisma-adapter": "^1.0.3",
"@trpc/client": "^9.24.0",
"@trpc/next": "^9.24.0",
"@trpc/react": "^9.24.0",
"@trpc/server": "^9.24.0",
"next": "^12.1.6",
"next-auth": "^4.3.4",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.31.3",
"react-hot-toast": "^2.2.0",
"react-input-mask": "^2.0.4",
"react-query": "^3.39.1",
"tailwind-scrollbar": "^1.3.1",
"usehooks-ts": "^2.5.4",
"zod": "^3.17.3"
},
"devDependencies": {
"@prisma/client": "^3.14.0",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"@types/node": "^17.0.39",
"@types/react": "^18.0.10",
"@types/react-input-mask": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"concurrently": "^7.2.1",
"daisyui": "^2.15.2",
"eslint": "^8.16.0",
"eslint-config-next": "^12.1.6",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"markdownlint-cli": "^0.31.1",
"postcss": "^8.4.14",
"prisma": "^3.14.0",
"tailwindcss": "^3.0.24",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.md": "markdownlint -f"
}
}