-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.76 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
{
"name": "dvalin-backend",
"version": "1.0.0",
"description": "",
"main": "src/main.ts",
"scripts": {
"dev": "tsx watch src/main.ts",
"lint": "prettier --check . && eslint .",
"start": "tsx src/main.ts",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@oauth-everything/passport-discord": "^1.0.2",
"@prisma/client": "^5.22.0",
"@quixo3/prisma-session-store": "^3.1.13",
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"bullmq": "^5.25.6",
"chalk": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"dvalin-data": "^1.0.3",
"express": "^4.21.1",
"express-session": "^1.18.1",
"neverthrow": "^8.1.1",
"passport": "^0.7.0",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^2.0.0",
"passport-microsoft": "^2.1.0",
"socket.io": "^4.8.1",
"toad-scheduler": "^3.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/node": "^20.14.12",
"@types/passport": "^1.0.16",
"@types/passport-github": "^1.1.12",
"@types/passport-google-oauth": "^1.0.45",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-microsoft": "^1.0.3",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-neverthrow": "^1.1.4",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"prisma": "^5.22.0",
"ts-loader": "^9.5.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">= 9",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
}
}