-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.44 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
{
"name": "shop",
"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": "jest",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@headlessui/react": "1.2.0",
"@heroicons/react": "1.0.1",
"@hookform/resolvers": "2.5.2",
"@prisma/client": "~2.24.1",
"@tailwindcss/aspect-ratio": "0.2.1",
"@tailwindcss/forms": "0.3.3",
"@types/preview-email": "2.0.0",
"@types/react": "17.0.9",
"autoprefixer": "10",
"blitz": "0.37.0",
"clsx": "1.1.1",
"date-fns": "2.22.1",
"eslint": "7.28.0",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"postcss": "8.3.1",
"prettier": "2.3.1",
"prettier-plugin-prisma": "0.7.0",
"pretty-quick": "3.1.0",
"preview-email": "3.0.4",
"prisma": "~2.24.1",
"react": "0.0.0-experimental-6a589ad71",
"react-dom": "0.0.0-experimental-6a589ad71",
"react-error-boundary": "3.1.3",
"react-hook-form": "7.8.3",
"tailwindcss": "2.1.4",
"typescript": "~4.3.2",
"zod": "3.1.0",
"zustand": "3.5.2"
},
"private": true,
"devDependencies": {}
}