-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1021 Bytes
/
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": "ditto-extended-api",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"dev": "nodemon -r dotenv/config src/app.ts",
"start": "ts-node -r dotenv/config src/app.ts",
"test": "jest",
"swagger": "node ./swagger.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.23.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-promise-router": "^4.1.1",
"express-validator": "^7.0.1",
"jsonschema": "^1.4.0",
"mongoose": "^6.0.9",
"swagger-ui-express": "^4.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-promise-router": "^3.0.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.3",
"@types/swagger-ui-express": "^4.1.6",
"dotenv": "^10.0.0",
"jest": "^29.7.0",
"nodemon": "^2.0.13",
"swagger-autogen": "^2.23.7",
"ts-jest": "^29.1.1"
}
}