-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
41
42
43
{
"name": "kata_node_api",
"version": "1.0.0",
"author": "eXalt IT",
"main": "app.js",
"contributors": [
"Sofien BILLOT",
"Valentin STOCKMAN"
],
"description": "",
"dependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"joi": "^17.6.3",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.3",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"swagger-ui-express": "^4.6.2",
"ts-node": "^10.9.1",
"typescript": "^4.4.4"
},
"scripts": {
"build": "tsc",
"start": "concurrently \"tsc -w\" \"nodemon dist/js/app.js\"",
"test": "jest --testTimeout=5000"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/node": "^18.15.11",
"concurrently": "^6.3.0",
"jest": "^29.5.0",
"nodemon": "^2.0.20",
"ts-jest": "^29.1.0"
}
}