56 lines
1.7 KiB
JSON
56 lines
1.7 KiB
JSON
{
|
|
"name": "motovaultpro-backend",
|
|
"version": "1.0.0",
|
|
"description": "MotoVaultPro backend with Modified Feature Capsule architecture",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "nodemon --watch src --exec ts-node src/index.ts",
|
|
"build": "tsc --project tsconfig.build.json",
|
|
"start": "node dist/index.js",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:feature": "jest --testPathPattern=src/features/${npm_config_feature}",
|
|
"migrate:all": "ts-node src/_system/migrations/run-all.ts",
|
|
"migrate:feature": "ts-node src/_system/migrations/run-feature.ts",
|
|
"schema:generate": "ts-node src/_system/schema/generate.ts",
|
|
"lint": "eslint src --ext .ts"
|
|
},
|
|
"dependencies": {
|
|
"pg": "^8.11.3",
|
|
"ioredis": "^5.3.2",
|
|
"minio": "^7.1.3",
|
|
"@fastify/multipart": "^8.1.0",
|
|
"axios": "^1.6.2",
|
|
"opossum": "^8.0.0",
|
|
"winston": "^3.11.0",
|
|
"zod": "^3.22.4",
|
|
"js-yaml": "^4.1.0",
|
|
"fastify": "^4.24.3",
|
|
"@fastify/cors": "^9.0.1",
|
|
"@fastify/helmet": "^11.1.1",
|
|
"@fastify/jwt": "^8.0.0",
|
|
"@fastify/type-provider-typebox": "^4.0.0",
|
|
"@sinclair/typebox": "^0.31.28",
|
|
"fastify-plugin": "^4.5.1",
|
|
"@fastify/autoload": "^5.8.0",
|
|
"get-jwks": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"@types/pg": "^8.10.9",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"typescript": "^5.6.3",
|
|
"ts-node": "^10.9.1",
|
|
"nodemon": "^3.0.1",
|
|
"jest": "^29.7.0",
|
|
"@types/jest": "^29.5.10",
|
|
"ts-jest": "^29.1.1",
|
|
"supertest": "^6.3.3",
|
|
"@types/supertest": "^2.0.16",
|
|
"@types/opossum": "^8.0.0",
|
|
"eslint": "^8.54.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.12.0",
|
|
"@typescript-eslint/parser": "^6.12.0"
|
|
}
|
|
}
|