-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.82 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
{
"name": "hop-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "npx tsx --watch src/server",
"start": "node ./dist/server.js",
"test": "jest",
"migrate": "npx drizzle-kit generate && npx drizzle-kit migrate",
"lint": "npx @biomejs/biome lint --write && npx @biomejs/biome format --write && npx @biomejs/biome check --write",
"build": "bun build ./src/server.ts --target=node --outdir ./dist",
"seed": "npx tsx src/testing/seed/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@socket.io/admin-ui": "^0.5.1",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"chalk": "^5.3.0",
"cloudinary": "^2.4.0",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"csv-parse": "^5.5.6",
"drizzle-orm": "^0.33.0",
"express": "^4.19.2",
"express-openapi-validator": "^5.3.1",
"express-rate-limit": "^7.4.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"openapi-typescript": "^7.3.0",
"pg": "^8.12.0",
"postgres": "^3.4.4",
"puppeteer": "^23.1.0",
"puppeteer-core": "^23.1.0",
"socket.io": "^4.7.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tsc": "^2.0.4",
"tsx": "^4.17.0",
"uuid": "^10.0.0",
"zod": "^3.24.0-canary.20240701T200529"
},
"devDependencies": {
"@babel/preset-env": "^7.25.3",
"@biomejs/biome": "1.8.3",
"@flydotio/dockerfile": "^0.5.8",
"@jest/globals": "^29.7.0",
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.12",
"@types/node": "^22.2.0",
"@types/pg": "^8.11.6",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^10.0.0",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.24.0",
"glob": "^11.0.0",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}