-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
{
"name": "PostReview.org-coming-soon",
"version": "1.0.0",
"scripts": {
"dev": "blitz dev",
"build": "blitz build",
"start": "blitz start",
"start:production": "blitz start --port $PORT",
"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": {
"@prisma/client": "3.14.0",
"blitz": "0.45.4",
"final-form": "4.20.7",
"formik": "2.2.9",
"postmark": "3.0.11",
"prisma": "3.14.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-final-form": "6.5.9",
"react-icons": "4.3.1",
"zod": "3.16.0"
},
"devDependencies": {
"@types/preview-email": "2.0.1",
"@types/react": "18.0.1",
"autoprefixer": "10.4.7",
"eslint": "7.32.0",
"husky": "7.0.4",
"lint-staged": "11.3.0-beta.2",
"postcss": "8.4.13",
"prettier": "2.6.2",
"prettier-plugin-prisma": "3.14.0",
"pretty-quick": "3.1.3",
"preview-email": "3.0.5",
"tailwindcss": "3.0.24",
"typescript": "~4.5"
},
"private": true
}