-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
81 lines (81 loc) · 2.32 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "flitz",
"version": "1.0.0",
"scripts": {
"build": "blitz build",
"start:production": "blitz start --port $PORT",
"dev": "prisma generate && next dev",
"lint": "eslint --ignore-path .gitignore --ext .ts,.tsx .",
"lint:fix": "eslint --fix --ignore-path .gitignore --ext .ts,.tsx .",
"format": "prettier --write --ignore-path .gitignore */**/*.{ts,tsx}",
"start": "blitz start",
"studio": "blitz prisma studio --browser none",
"test": "jest",
"test:watch": "jest --watch",
"kill": "killall node -9"
},
"dependencies": {
"@blitzjs/auth": "2.0.0-beta.13",
"@blitzjs/next": "2.0.0-beta.13",
"@blitzjs/rpc": "2.0.0-beta.13",
"@chakra-ui/react": "2.3.6",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@hookform/resolvers": "2.9.10",
"@nestjs/common": "9.2.0",
"@nestjs/core": "^9.2.0",
"@nestjs/platform-express": "^9.2.0",
"@prisma/client": "4.5.0",
"@sentry/browser": "7.17.1",
"@sentry/node": "7.17.1",
"@sentry/tracing": "7.17.1",
"@types/jest": "29.2.0",
"avvvatars-react": "0.4.2",
"blitz": "2.0.0-beta.13",
"cookie-parser": "^1.4.6",
"firebase": "9.12.1",
"firebase-admin": "11.2.0",
"formidable": "2.0.1",
"framer-motion": "7.6.2",
"helmet": "^6.0.0",
"i18next": "22.0.3",
"i18next-browser-languagedetector": "7.0.0",
"jdenticon": "3.2.0",
"next": "13.0.0",
"prisma": "4.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.38.0",
"react-i18next": "12.0.0",
"react-icons": "4.6.0",
"react-textarea-autosize": "^8.3.4",
"reflect-metadata": "0.1.13",
"rxjs": "7.5.7",
"sharp": "0.31.1",
"tsyringe": "4.7.0",
"zod": "3.19.1"
},
"devDependencies": {
"@jest/types": "29.2.1",
"@types/cookie-parser": "1.4.3",
"@types/formidable": "2.0.5",
"@types/react": "18.0.24",
"@types/sharp": "^0.31.0",
"eslint": "8.26.0",
"eslint-config-next": "13.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-unused-imports": "2.0.0",
"prettier": "2.7.1",
"prettier-plugin-prisma": "4.4.0",
"typescript": "4.7.4"
},
"private": true,
"prisma": {
"schema": "db/schema.prisma"
},
"volta": {
"node": "18.12.1",
"yarn": "1.22.19"
}
}