-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"name": "hookshot",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:worker\"",
"dev:server": "ts-node-dev --respawn --transpile-only src/server.ts",
"dev:worker": "ts-node-dev --respawn --transpile-only src/workers/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.9.0",
"bullmq": "^5.53.2",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"ioredis": "^5.6.1",
"joi": "^17.13.3",
"knex": "^3.1.0",
"morgan": "^1.10.0",
"pg": "^8.16.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/morgan": "^1.9.10",
"@types/node": "^22.15.30",
"@types/swagger-ui-express": "^4.1.8",
"concurrently": "^9.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}