-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.51 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
82
83
{
"private": true,
"name": "hood",
"version": "0.1.0",
"license": "UNLICENSED",
"scripts": {
"build": "next build",
"dev": "rm -rf .next && next dev",
"postinstall": "prisma generate",
"lint": "eslint .",
"listener:build": "tsc src/services/listener/index.ts --outDir './dist' --esModuleInterop true --target 'es5' --moduleResolution 'node' --skipLibCheck true",
"listener:dev": "nodemon src/services/listener/index.ts",
"listener:start": "node dist/services/listener/index.js",
"prepare": "husky install",
"prisma:gen": "prisma generate --schema=./src/lib/prisma/schema.prisma",
"start": "next start",
"test": "jest",
"tsc": "tsc"
},
"dependencies": {
"@anatine/zod-openapi": "^1.12.1",
"@logtail/browser": "^0.4.0",
"@paralleldrive/cuid2": "^2.2.0",
"@prisma/client": "^4.13.0",
"@tanstack/react-query": "^4.29.5",
"@upstash/redis": "^1.20.4",
"bcrypt": "^5.1.0",
"cloudinary": "^1.36.2",
"date-fns": "^2.30.0",
"dotenv": "^16.0.3",
"ioredis": "^5.3.2",
"next": "13.3.4",
"react": "18.2.0",
"react-day-picker": "^8.7.1",
"react-dom": "18.2.0",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"typescript": "5.0.4",
"zod": "^3.21.4",
"zustand": "^4.3.7"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/node": "^18.16.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@unocss/postcss": "^0.51.8",
"@unocss/preset-wind": "^0.51.8",
"eslint": "^8.39.0",
"eslint-config-next": "13.3.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.19.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"openapi3-ts": "^3.2.0",
"prettier": "^2.8.8",
"prettier-package-json": "^2.8.0",
"prettier-plugin-prisma": "^4.13.0",
"prettier-plugin-tailwindcss": "^0.2.8",
"prisma": "^4.13.0",
"ts-node": "^10.9.1",
"unocss": "^0.51.8"
},
"engines": {
"node": "18.x",
"yarn": "1.x"
},
"lint-staged": {
"*": "prettier --config .prettierrc.json --ignore-unknown --write",
"package.json": "prettier-package-json --write",
"*.(js|jsx|ts|tsx)": "eslint --fix"
},
"prisma": {
"schema": "src/lib/db/prisma/schema.prisma"
}
}