forked from fga-eps-mds/2024.1-UnB-TV-API-Gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1 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
38
39
40
{
"name": "2023.2-unb-tv-api-gateway",
"version": "1.0.0",
"description": "UnB TV API Gateway",
"main": "index.ts",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "rimraf ./dist && tsc",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:prod": "CI=true npm t -- --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-http-proxy": "^2.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/express-http-proxy": "^1.6.6",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.3",
"@types/supertest": "^2.0.16",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"jest-sonar": "^0.2.16",
"rimraf": "^5.0.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.2"
}
}