-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.83 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
{
"name": "myAppName",
"version": "1.0.0",
"scripts": {
"dev": "blitz dev",
"build": "blitz build",
"start": "blitz start",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"prepare": "husky install",
"bleach": "rm -rf node_modules/ && rm -rf .next/ && npm install"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@blitzjs/auth": "2.0.0-beta.36",
"@blitzjs/next": "2.0.0-beta.36",
"@blitzjs/rpc": "2.0.0-beta.36",
"@hookform/error-message": "2.0.1",
"@hookform/resolvers": "3.3.2",
"@prisma/client": "5.4.2",
"blitz": "2.0.0-beta.36",
"next": "13.5.4",
"prisma": "5.4.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.47.0",
"secure-password": "4.0.0",
"zod": "3.22.4"
},
"devDependencies": {
"@next/bundle-analyzer": "13.5.4",
"@next/env": "13.5.4",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.0.0",
"@testing-library/react-hooks": "8.0.1",
"@types/node": "20.8.4",
"@types/preview-email": "3.0.2",
"@types/react": "18.2.28",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@vitejs/plugin-react": "4.1.0",
"eslint": "8.51.0",
"eslint-config-next": "13.5.4",
"eslint-config-prettier": "9.0.0",
"husky": "8.0.3",
"jsdom": "22.1.0",
"lint-staged": "14.0.1",
"prettier": "^3.0.3",
"prettier-plugin-prisma": "5.0.0",
"pretty-quick": "3.1.3",
"preview-email": "3.0.19",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "4.2.1",
"vitest": "0.34.6"
},
"private": true
}