-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "blitz-chat",
"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",
"generate": "blitz prisma generate",
"deploy": "blitz prisma migrate deploy"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@chakra-ui/icons": "1.1.1",
"@chakra-ui/react": "1.7.3",
"@emotion/react": "11.7.1",
"@emotion/styled": "11.6.0",
"@prisma/client": "3.6.0",
"@types/express": "4.17.13",
"blitz": "0.44.4",
"cors": "2.8.5",
"express": "4.17.2",
"formik": "2.2.9",
"framer-motion": "5.5.5",
"nodemailer": "6.7.2",
"react": "18.0.0-beta-149b420f6-20211119",
"react-dom": "18.0.0-alpha-5ca4b0433-20211020",
"socket.io": "4.4.0",
"socket.io-client": "4.4.0",
"zod": "3.11.6",
"zustand": "3.6.7"
},
"devDependencies": {
"@types/preview-email": "2.0.1",
"@types/react": "17.0.37",
"eslint": "7.32.0",
"husky": "7.0.4",
"lint-staged": "11.3.0-beta.2",
"prettier": "2.5.1",
"prettier-plugin-prisma": "3.6.0",
"pretty-quick": "3.1.2",
"preview-email": "3.0.5",
"prisma": "3.6.0",
"typescript": "~4.5"
},
"private": true
}