-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 893 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
{
"name": "dg-api-gate",
"version": "0.13.1",
"description": "a document generator api gate",
"main": "server.js",
"scripts": {
"dev": "nodemon ./src/server.ts",
"start": "node server.js",
"build": "tsc",
"watch": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": ""
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.1",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.17.1",
"jaeger-client": "^3.18.1",
"minio": "^7.0.26",
"moment": "^2.25.3",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^11.15.12",
"@types/nodemailer": "^6.4.0",
"nodemon": "^1.19.4",
"ts-jest": "^25.5.1",
"ts-node": "^10.4.0",
"typescript": "^3.9.10"
}
}