2021-02-16 21:55:50 +00:00
|
|
|
{
|
2022-01-09 15:19:49 +00:00
|
|
|
"name": "plutodev_express_api",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"start": "tsc && node ./dist/app.js",
|
|
|
|
"build": "tsc",
|
|
|
|
"debug": "export DEBUG=* && npm run start",
|
2022-06-25 10:21:48 +00:00
|
|
|
"test": "jest --coverage --testResultsProcessor ./node_modules/jest-sonar-reporter/index.js"
|
2022-01-09 15:19:49 +00:00
|
|
|
},
|
|
|
|
"keywords": [],
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
|
|
|
"app-root-path": "^3.0.0",
|
|
|
|
"axios": "^0.24.0",
|
|
|
|
"bcrypt": "^5.0.1",
|
|
|
|
"cors": "^2.8.5",
|
|
|
|
"debug": "^4.3.1",
|
|
|
|
"dotenv": "^8.2.0",
|
2022-12-24 20:11:16 +00:00
|
|
|
"express": "^4.18.2",
|
2022-01-09 15:19:49 +00:00
|
|
|
"guid-typescript": "^1.0.9",
|
2022-12-24 19:54:09 +00:00
|
|
|
"mariadb": "^3.0.2",
|
2022-01-09 15:19:49 +00:00
|
|
|
"random-words": "^1.1.1",
|
|
|
|
"swagger-jsdoc": "^6.1.0",
|
|
|
|
"swagger-ui-express": "^4.3.0",
|
|
|
|
"winston": "^3.3.3"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/app-root-path": "^1.2.4",
|
|
|
|
"@types/bcrypt": "^3.0.1",
|
|
|
|
"@types/debug": "^4.1.5",
|
2022-12-24 20:11:16 +00:00
|
|
|
"@types/express": "^4.17.15",
|
2022-06-25 10:21:48 +00:00
|
|
|
"@types/jest": "^28.1.3",
|
2022-12-24 20:11:16 +00:00
|
|
|
"@types/node": "^18.11.17",
|
2022-01-09 15:19:49 +00:00
|
|
|
"@types/random-words": "^1.1.2",
|
|
|
|
"@types/swagger-jsdoc": "^6.0.1",
|
|
|
|
"@types/swagger-ui-express": "^4.1.3",
|
|
|
|
"@types/winston": "^2.4.4",
|
2022-06-25 10:41:49 +00:00
|
|
|
"is-number": "^7.0.0",
|
2022-06-25 10:21:48 +00:00
|
|
|
"jest": "^28.1.1",
|
|
|
|
"jest-sonar-reporter": "^2.0.0",
|
2022-01-09 15:19:49 +00:00
|
|
|
"source-map-support": "^0.5.19",
|
2022-06-25 10:21:48 +00:00
|
|
|
"ts-jest": "^28.0.5",
|
2022-01-09 15:19:49 +00:00
|
|
|
"tslint": "^6.1.3",
|
2022-12-24 20:11:16 +00:00
|
|
|
"typescript": "^4.9.4"
|
2022-06-25 10:21:48 +00:00
|
|
|
},
|
|
|
|
"jestSonar": {
|
|
|
|
"sonar56x": true,
|
|
|
|
"reportPath": "testResults",
|
|
|
|
"reportFile": "sonar-report.xml",
|
|
|
|
"indent": 4
|
2022-01-09 15:19:49 +00:00
|
|
|
}
|
2021-02-16 21:55:50 +00:00
|
|
|
}
|