-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "com.cms",
"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": {
"@prisma/client": "3.4.0",
"blitz": "0.42.0",
"react-dom": "18.0.0-alpha-5ca4b0433-20211020",
"react": "18.0.0-alpha-5ca4b0433-20211020",
"zod": "3.11.6",
"final-form": "4.20.4",
"react-final-form": "6.5.7"
},
"devDependencies": {
"@types/preview-email": "2.0.1",
"@types/react": "17.0.34",
"eslint": "7.32.0",
"husky": "7.0.4",
"lint-staged": "11.2.6",
"prettier-plugin-prisma": "3.3.0",
"prettier": "2.4.1",
"pretty-quick": "3.1.1",
"preview-email": "3.0.5",
"prisma": "3.4.0",
"typescript": "~4.4"
},
"private": true
}