Archived
2
This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
definma-api/package.json

36 lines
895 B
JSON
Raw Normal View History

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": {
"test": "mocha dist/**/**.spec.js",
"start": "tsc && node dist/index.js",
2020-04-20 16:13:49 +02:00
"dev": "nodemon -e ts,yaml --exec \"npm run start\""
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",
"@hapi/joi": "^17.1.1",
2020-01-14 13:25:13 +01:00
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.6",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
2020-01-14 13:25:13 +01:00
"cfenv": "^1.2.2",
"express": "^4.17.1",
2020-04-21 10:53:07 +02:00
"json-schema": "^0.2.5",
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": {
"mocha": "^7.0.0",
"should": "^13.2.3",
"supertest": "^4.0.2"
}
}