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

54 lines
1.6 KiB
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": {
2020-04-23 13:59:45 +02:00
"tsc": "tsc",
"tsc-full": "del /q dist\\* & (for /d %x in (dist\\*) do @rd /s /q \"%x\") & 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",
"dev": "nodemon -e ts,yaml --exec \"npm run start\"",
"loadDev": "node dist/test/loadDev.js",
"coverage": "nyc --reporter=html --reporter=tex mocha dist/**/**.spec.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-05-13 17:28:18 +02:00
"@apidevtools/swagger-parser": "^9.0.1",
"@hapi/joi": "^17.1.1",
"@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",
"@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",
"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-05-12 17:15:36 +02:00
"lodash": "^4.17.15",
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-05-12 17:15:36 +02:00
"@types/lodash": "^4.14.150",
2020-04-27 15:10:14 +02:00
"mocha": "^7.1.2",
"nyc": "^15.0.1",
2020-01-14 13:25:13 +01:00
"should": "^13.2.3",
"supertest": "^4.0.2"
}
}