-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.15 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
{
"name": "vgg-backend-express",
"version": "1.0.3",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc && cp -r src/proto dist/proto || xcopy /E /I /y src\\proto dist\\proto",
"start": "node dist/server.js",
"migrate": "ts-node ./node_modules/sequelize-cli/lib/sequelize db:migrate",
"test": "jest --config jest.config.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@aws-sdk/client-s3": "^3.1079.0",
"@aws-sdk/s3-request-presigner": "^3.1079.0",
"@grpc/grpc-js": "^1.14.4",
"@grpc/proto-loader": "^0.8.1",
"amqplib": "^2.0.1",
"axios": "^1.16.0",
"bcryptjs": "^3.0.3",
"cors": "^2.8.6",
"dayjs": "^1.11.21",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"jiti": "^2.7.0",
"jsonwebtoken": "^9.0.3",
"kafkajs": "^2.2.4",
"midtrans-client": "^1.4.3",
"mongoose": "^9.7.3",
"mqtt": "^5.15.1",
"multer": "^2.1.1",
"mysql2": "^3.22.3",
"nanoid": "^5.1.11",
"node-cron": "^4.2.1",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"redis": "^5.12.1",
"resend": "^6.12.3",
"sequelize": "^6.37.8",
"sequelize-typescript": "^2.1.6",
"socket.io": "^4.8.3",
"uuid": "^14.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/amqplib": "^0.10.8",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.1.0",
"@types/node": "^25.6.2",
"@types/node-cron": "^3.0.11",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.17",
"@types/socket.io": "^3.0.1",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@vercel/ncc": "^0.38.4",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"jest": "^29.7.0",
"sequelize-cli": "^6.6.5",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4"
}
}