mirror of
https://github.com/netlight/my-finance-pal-backend.git
synced 2024-11-09 16:41:56 +01:00
66 lines
2.1 KiB
JSON
66 lines
2.1 KiB
JSON
{
|
|
"name": "my-finance-pal",
|
|
"version": "1.0.0",
|
|
"description": "A slick application for manging personal finances",
|
|
"license": "MIT",
|
|
"author": "Alexander Ungar",
|
|
"main": "dist/src/index.js",
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"generate-api-types": "openapi-typescript api/my-finance-pal.yml --output generated/api.ts",
|
|
"copy-resources": "copyfiles env/production.env api/* dist/",
|
|
"compile": "tsc",
|
|
"build": "run-s clean generate-api-types compile copy-resources",
|
|
"lint": "eslint --ext .ts src/",
|
|
"dev": "nodemon src/server.ts",
|
|
"test:unit": "jest --config \"jest.config.unit.ts\"",
|
|
"test:integration": "jest --config \"jest.config.integration.ts\""
|
|
},
|
|
"dependencies": {
|
|
"@types/supertest": "^2.0.12",
|
|
"body-parser": "^1.20.2",
|
|
"currency.js": "^2.0.4",
|
|
"dotenv": "^16.0.3",
|
|
"envalid": "^8.0.0",
|
|
"express": "^4.18.2",
|
|
"express-async-errors": "^3.1.1",
|
|
"express-async-handler": "^1.2.0",
|
|
"express-openapi-validator": "^5.0.3",
|
|
"express-winston": "^4.2.0",
|
|
"helmet": "^7.0.0",
|
|
"http-status-codes": "^2.2.0",
|
|
"mongoose": "^7.0.2",
|
|
"openapi-typescript": "^6.2.0",
|
|
"ts-command-line-args": "^2.4.2",
|
|
"uuid": "^9.0.0",
|
|
"winston": "^3.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/eslint": "^8.21.1",
|
|
"@types/express": "^4.17.17",
|
|
"@types/jest": "^29.5.0",
|
|
"@types/morgan": "^1.9.4",
|
|
"@types/node": "^20.7.2",
|
|
"@types/uuid": "^9.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^6.4.0",
|
|
"@typescript-eslint/parser": "^6.7.3",
|
|
"copyfiles": "^2.4.1",
|
|
"eslint": "^8.0.1",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-config-standard-with-typescript": "^39.1.0",
|
|
"eslint-plugin-import": "^2.25.2",
|
|
"eslint-plugin-n": "^16.0.0",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"eslint-plugin-promise": "^6.0.0",
|
|
"jest": "^29.5.0",
|
|
"nodemon": "^3.0.1",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^3.0.3",
|
|
"rimraf": "^5.0.5",
|
|
"supertest": "^6.3.3",
|
|
"ts-jest": "^29.0.5",
|
|
"ts-node": "^10.9.1",
|
|
"tsconfig-paths": "^4.1.2",
|
|
"typescript": "^5.0.3"
|
|
}
|
|
}
|