-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.78 KB
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
{
"name": "bullreckon",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"clean:web": "rm -rf apps/calc_server apps/market_server apps/auth_server apps/api_server shared middleware",
"clean:calc_server": "rm -rf apps/web apps/market_server apps/auth_server apps/api_server ",
"clean:market_server": "rm -rf apps/web apps/calc_server apps/auth_server apps/api_server",
"clean:auth_server": "rm -rf apps/web apps/calc_server apps/market_server apps/api_server",
"clean:api_server": "rm -rf apps/web apps/calc_server apps/market_server apps/auth_server",
"install:web": "pnpm install && pnpm install --filter ./apps/web",
"install:calc_server": "pnpm install && pnpm install --filter ./apps/calc_server",
"install:market_server": "pnpm install && pnpm install --filter ./apps/market_server",
"install:auth_server": "pnpm install && pnpm install --filter ./apps/auth_server",
"install:api_server": "pnpm install && pnpm install --filter ./apps/api_server"
},
"devDependencies": {
"@types/bcryptjs": "^3.0.0",
"@types/body-parser": "^1.19.6",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/express-fileupload": "^1.5.1",
"@types/express-session": "^1.18.2",
"@types/http-errors": "^2.0.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.10",
"@types/node": "^22.15.3",
"@types/nodemailer": "^7.0.2",
"@types/validator": "^13.15.3",
"mongoose": "^8.18.3",
"prettier": "^3.6.2",
"turbo": "^2.5.6",
"typescript": "5.9.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"@sendgrid/mail": "^8.1.6",
"axios": "^1.12.2",
"bcryptjs": "^3.0.2",
"body-parser": "^2.2.0",
"bullmq": "^5.58.8",
"compression": "^1.8.1",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"express-fileupload": "^1.5.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^8.1.0",
"express-session": "^1.18.2",
"google-auth-library": "^10.3.0",
"googleapis": "^160.0.0",
"helmet": "^8.1.0",
"http-errors": "^2.0.0",
"ioredis": "^5.8.0",
"jsonwebtoken": "^9.0.2",
"lightweight-charts": "^5.0.8",
"morgan": "^1.10.1",
"nodemailer": "^7.0.6",
"socket.io": "^4.8.1",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.6",
"validator": "^13.15.15",
"zod": "^4.1.11"
},
"resolutions": {
"@types/express-serve-static-core": "^5.0.7"
}
}