2020-01-14 13:25:13 +01:00
|
|
|
{
|
|
|
|
"name": "dfop-api",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "API for the digital fingerprint of plastics mongodb",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2020-04-23 13:59:45 +02:00
|
|
|
"tsc": "tsc",
|
2020-01-14 13:25:13 +01:00
|
|
|
"test": "mocha dist/**/**.spec.js",
|
2020-05-04 15:48:07 +02:00
|
|
|
"start": "tsc && node dist/index.js || exit 1",
|
2020-05-08 09:58:12 +02:00
|
|
|
"dev": "nodemon -e ts,yaml --exec \"npm run start\"",
|
|
|
|
"loadDev": "node dist/test/loadDev.js"
|
2020-01-14 13:25:13 +01:00
|
|
|
},
|
|
|
|
"keywords": [],
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
2020-04-21 10:53:07 +02:00
|
|
|
"@apidevtools/json-schema-ref-parser": "^8.0.0",
|
2020-04-22 17:24:15 +02:00
|
|
|
"@hapi/joi": "^17.1.1",
|
2020-04-24 10:53:45 +02:00
|
|
|
"@types/bcrypt": "^3.0.0",
|
2020-04-27 15:24:17 +02:00
|
|
|
"@types/body-parser": "^1.19.0",
|
|
|
|
"@types/express-serve-static-core": "^4.17.5",
|
2020-01-14 13:25:13 +01:00
|
|
|
"@types/mocha": "^5.2.7",
|
2020-04-24 10:53:45 +02:00
|
|
|
"@types/mongoose": "^5.7.12",
|
2020-01-14 13:25:13 +01:00
|
|
|
"@types/node": "^13.1.6",
|
2020-04-27 15:24:17 +02:00
|
|
|
"@types/qs": "^6.9.1",
|
|
|
|
"@types/serve-static": "^1.13.3",
|
2020-04-23 17:46:00 +02:00
|
|
|
"axios": "^0.19.2",
|
2020-04-23 13:59:45 +02:00
|
|
|
"basic-auth": "^2.0.1",
|
2020-04-22 17:24:15 +02:00
|
|
|
"bcryptjs": "^2.4.3",
|
|
|
|
"body-parser": "^1.19.0",
|
2020-01-14 13:25:13 +01:00
|
|
|
"cfenv": "^1.2.2",
|
2020-04-23 13:59:45 +02:00
|
|
|
"content-filter": "^1.1.2",
|
2020-01-14 13:25:13 +01:00
|
|
|
"express": "^4.17.1",
|
2020-04-21 10:53:07 +02:00
|
|
|
"json-schema": "^0.2.5",
|
2020-04-23 13:59:45 +02:00
|
|
|
"mongo-sanitize": "^1.1.0",
|
2020-01-14 13:25:13 +01:00
|
|
|
"mongoose": "^5.8.7",
|
2020-04-20 08:42:26 +02:00
|
|
|
"nodemon": "^2.0.3",
|
2020-01-14 13:25:13 +01:00
|
|
|
"swagger-ui-express": "^4.1.2",
|
|
|
|
"tslint": "^5.20.1",
|
2020-04-21 10:53:07 +02:00
|
|
|
"typescript": "^3.7.4"
|
2020-01-14 13:25:13 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-04-27 15:10:14 +02:00
|
|
|
"mocha": "^7.1.2",
|
2020-01-14 13:25:13 +01:00
|
|
|
"should": "^13.2.3",
|
|
|
|
"supertest": "^4.0.2"
|
|
|
|
}
|
|
|
|
}
|