-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.18 KB
/
package.json
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
{
"name": "express-csl",
"version": "1.0.0",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"dev": "nodemon src/index.ts",
"start": "tsc && 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\""
},
"dependencies": {
"@meshsdk/core": "^1.7.10",
"axios": "^1.5.0",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"json-schema-to-ts": "^2.9.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@types/supertest": "^2.0.12",
"concurrently": "^8.2.0",
"jest": "^29.6.1",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"test-node": "^0.0.2",
"ts-jest": "^29.1.1",
"typescript": "^5.5.4"
}
}