forked from Talenttrust/Talenttrust-Backend
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.66 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.66 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
{
"name": "talenttrust-backend",
"version": "0.1.0",
"description": "TalentTrust API Gateway and services",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn src/index.ts",
"blue": "cross-env APP_COLOR=blue PORT=3001 ts-node-dev --respawn src/index.ts",
"green": "cross-env APP_COLOR=green PORT=3002 ts-node-dev --respawn src/index.ts",
"router": "cross-env MODE=router PORT=3000 ts-node-dev --respawn src/index.ts",
"deploy:switch-green": "cross-env MODE=deploy ts-node src/deploy.ts switch-green",
"deploy:rollback": "cross-env MODE=deploy ts-node src/deploy.ts rollback",
"deploy:status": "cross-env MODE=deploy ts-node src/deploy.ts status",
"test": "jest",
"test:ci": "jest --ci --coverage --coverageThreshold='{\"global\":{\"lines\":95,\"functions\":95,\"branches\":80,\"statements\":95}}'",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"audit:ci": "npm audit --audit-level=high"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"dependencies": {
"bullmq": "^5.71.0",
"express": "^4.21.0",
"ioredis": "^5.10.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^4.17.21",
"@types/ioredis": "^4.28.10",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"supertest": "^7.2.2",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3"
}
}