-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.2 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": "web-service-refactor",
"version": "1.0.0",
"description": "Knowledge Graph Explorer Web Service API",
"main": "app.js",
"scripts": {
"start": "node dist/src/app.js",
"test": "mocha --require ts-node/register --watch-extensions ts 'test/**/*.ts'",
"docker": "setlocal && set NODE_ENV=docker&& endlocal && tsc && node dist/src/app.js",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "https://gitlab.bayer.com/d3a/applications/knowledge-graph-visualizer/web-service.git"
},
"author": "Kanwalmeet Singh",
"license": "ISC",
"dependencies": {
"@types/chai": "^4.2.11",
"@types/express": "^4.17.6",
"@types/mocha": "^7.0.2",
"@types/redis": "^2.8.28",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonld": "^3.1.1",
"mocha": "^7.1.2",
"nock": "^12.0.3",
"nodemon": "^2.0.4",
"redis": "^3.1.2",
"sinon": "^9.1.0",
"swagger-jsdoc": "^4.2.0",
"swagger-ui-express": "^4.1.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"uuid": "^8.3.1",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0",
"xml2js": "^0.4.23"
}
}