-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.01 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
{
"name": "home-inventory",
"version": "0.1.0",
"license": "MIT",
"private": true,
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,css,json}\" --ignore-path .gitignore",
"prettier:check": "prettier --check \"**/*.{js,jsx,ts,tsx,md,css,json}\" --ignore-path .gitignore",
"lint": "npx eslint . --ext .ts,.js,.tsx,.jsx",
"dev": "npx prisma generate && npx prisma migrate dev && next dev",
"build": "next build",
"build-deploy": "npx prisma migrate deploy && npx prisma generate && next build",
"prepare": "husky install",
"typecheck": "npx tsc --noEmit",
"start": "npx prisma migrate deploy && npx prisma generate && next start"
},
"devDependencies": {
"@casperiv/eslint-config": "^8.0.0",
"@casperiv/eslint-config-next": "^8.0.0",
"@casperiv/eslint-config-react": "^8.0.0",
"@types/node": "^20.5.4",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.15",
"eslint": "^8.47.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "^8.4.28",
"prettier": "^3.0.2",
"prisma": "^5.2.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6"
},
"dependencies": {
"@casperiv/useful": "^3.0.0",
"@hookform/resolvers": "^3.3.0",
"@prisma/client": "^5.2.0",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@react-aria/label": "^3.6.1",
"@tanstack/react-query": "^4.33.0",
"@tanstack/react-table": "^8.9.3",
"@trpc/client": "^10.38.0",
"@trpc/next": "^10.38.0",
"@trpc/react-query": "^10.38.0",
"@trpc/server": "^10.38.0",
"next": "^13.4.19",
"next-auth": "^4.23.1",
"react": "^18.2.0",
"react-bootstrap-icons": "^1.10.3",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"superjson": "^1.13.1",
"tailwind-merge": "^1.14.0",
"zod": "^3.22.2"
},
"lint-staged": {
"*.{js,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,sass}\"": "prettier --write --ignore-path .prettierignore"
}
}