forked from nomos-guild/cgov-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.68 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.68 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
{
"name": "express-csl",
"version": "1.0.0",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "node .build/index.js",
"test:endpoints": "PORT=3001 jest --runInBand --testMatch='**/controller.test.ts' --forceExit",
"test:validation": "PORT=3002 jest --runInBand --testMatch='**/validation.test.ts' --forceExit",
"test:businessLogic": "PORT=3003 jest --runInBand --testMatch='**/routes.test.ts' --forceExit",
"test": "concurrently \"yarn test:endpoints\" \"yarn test:validation\" \"yarn test:businessLogic\"",
"swagger:generate": "node swagger-generator.js",
"test:sync": "ts-node test-sync.ts"
},
"dependencies": {
"@meshsdk/core": "^1.9.0-beta.86",
"@prisma/client": "^6.19.0",
"@types/node-cron": "^3.0.11",
"axios": "^1.12.2",
"class-validator": "^0.14.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"json-schema-to-ts": "^3.1.1",
"node-cron": "^4.2.1",
"puppeteer": "^22.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.7.2",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"concurrently": "^9.2.1",
"jest": "^30.2.0",
"nodemon": "^3.1.10",
"prisma": "^6.19.0",
"supertest": "^7.1.4",
"test-node": "^0.0.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}