forked from FaveTeamz/workload-governor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.86 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
{
"name": "workload-governor-api",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts' --max-warnings 0",
"typecheck": "tsc --noEmit",
"test": "jest --runInBand --forceExit",
"test:unit": "vitest run",
"test:unit:coverage": "vitest run --coverage",
"test:unit:watch": "vitest"
},
"dependencies": {
"@stellar/stellar-sdk": "^12.3.0",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^10.0.0",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "4.19.2",
"express-rate-limit": "^8.5.2",
"helmet": "^8.2.0",
"ioredis": "^5.11.1",
"morgan": "^1.11.0",
"node-cron": "^4.5.0",
"pg": "8.12.0",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"redis": "^6.0.1",
"swagger-ui-express": "^5.0.1",
"tweetnacl": "^1.0.3",
"uuid": "^9.0.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/cors": "^2.8.19",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/morgan": "^1.9.10",
"@types/node": "20.14.10",
"@types/node-cron": "^3.0.11",
"@types/pg": "8.11.6",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "8.57.0",
"jest": "29.7.0",
"jsdom": "^29.1.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"supertest": "7.0.0",
"ts-jest": "29.2.2",
"ts-node": "10.9.2",
"typescript": "5.5.3",
"vitest": "^4.1.9"
}
}