-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.27 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
44
45
{
"name": "nenkyuu_calendar",
"version": "1.6.8",
"description": "A microservice to keep track of annual leaves of employees",
"main": "index.js",
"scripts": {
"dev": "nodemon index.ts",
"build": "tsc --outdir ./build -p . ",
"start": "node ./build/index.js",
"test": "mocha -r ts-node/register test/*.test.ts --timeout 10000 --exit",
"coverage": "nyc npm run test",
"swagger-autogen": "ts-node swagger.ts"
},
"keywords": [],
"author": "Maxime Moreillon",
"license": "MIT",
"dependencies": {
"@moreillon/express_identification_middleware": "^1.1.0",
"axios": "^0.21.4",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.17.3",
"express-async-errors": "^3.1.1",
"express-prom-bundle": "^6.6.0",
"http-errors": "^2.0.0",
"mongoose": "^5.13.14",
"prom-client": "^15.0.0",
"swagger-autogen": "^2.23.1",
"swagger-ui-express": "^4.6.3"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/cors": "^2.8.13",
"@types/mocha": "^10.0.1",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"chai": "^4.3.6",
"mocha": "^9.2.2",
"nodemon": "^2.0.16",
"nyc": "^15.1.0",
"supertest": "^6.2.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}