-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.95 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.95 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
81
82
83
84
85
86
87
{
"name": "vite-typescript-starter",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "nodemon -w src/ -x tsx src/app.ts",
"start": "tsx src/app.ts",
"subscribe:staff": "tsx scr/subscribe-staff-to-topic.ts",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier . --write",
"format:check": "prettier . --check",
"build": "tsc",
"verify": "yarn build && yarn lint:check && yarn format:check",
"test": "jest --config=testing/jest.config.ts",
"test:watch": "jest --config=testing/jest.config.ts --watch",
"test:docker": "docker compose -f docker-compose.test.yml run --rm test yarn test",
"logs": "docker compose logs -f api",
"shell": "docker compose exec api sh",
"restart": "docker compose restart api"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.496.0",
"@aws-sdk/client-ses": "^3.609.0",
"@aws-sdk/client-sesv2": "^3.873.0",
"@aws-sdk/s3-presigned-post": "^3.499.0",
"@aws-sdk/s3-request-presigner": "^3.496.0",
"@paralleldrive/cuid2": "^2.2.2",
"@solana/wallet-standard-features": "^1.3.0",
"@supabase/supabase-js": "^2.49.4",
"@types/cors": "^2.8.17",
"@types/mustache": "^4.2.5",
"axios": "^1.6.8",
"bcrypt": "*",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"datetime": "^0.0.3",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-rate-limit": "^6.0.0",
"firebase-admin": "^13.5.0",
"google-auth-library": "^9.15.1",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongodb-memory-server": "^9.3.0",
"mongoose": "^8.2.3",
"morgan": "^1.10.0",
"mustache": "^4.2.0",
"node-gyp-build": "^4.8.4",
"ts-node": "^10.9.2",
"tsx": "^4.5.0",
"typescript": "^5.4.5",
"uuid": "^11.1.0",
"webidl-conversions": "^7.0.0",
"ws": "^8.18.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@jest/globals": "^29.7.0",
"@types/bcrypt": "^5.0.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/express-rate-limit": "^6.0.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.9.3",
"@types/passport-google-oauth20": "^2.0.14",
"@types/pg": "^8.15.2",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.24.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "3.2.5",
"supertest": "^7.0.0",
"ts-jest": "^29.1.4",
"typescript-eslint": "^8.29.1"
},
"resolutions": {
"esbuild": "0.25.8"
}
}