-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "blitzjs-example",
"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",
"heroku-postbuild": "blitz build && npx blitz prisma migrate deploy && npx blitz db seed"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@chakra-ui/icons": "1.0.15",
"@chakra-ui/react": "1.1.2",
"@emotion/react": "11.1.4",
"@emotion/styled": "11.0.0",
"@prisma/client": "3.2.1",
"blitz": "0.41.0",
"final-form": "4.20.4",
"formidable": "1.2.2",
"framer-motion": "3.2.0",
"react": "18.0.0-alpha-8ee4ff883-20211013",
"react-dom": "18.0.0-alpha-8ee4ff883-20211013",
"react-final-form": "6.5.7",
"zod": "3.9.8",
"typescript": "~4.3"
},
"devDependencies": {
"@types/preview-email": "2.0.1",
"@types/react": "17.0.27",
"eslint": "7.32.0",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"prettier-plugin-prisma": "0.15.0",
"prettier": "2.4.1",
"pretty-quick": "3.1.1",
"preview-email": "3.0.5",
"prisma": "3.2.1"
},
"private": true
}