85 lines
2.3 KiB
JSON
85 lines
2.3 KiB
JSON
{
|
|
"name": "ara-kanban-service",
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"build": "npx ts-node build.ts",
|
|
"lint": "npx eslint --ext .ts src/",
|
|
"lint:tests": "npx eslint --ext .ts spec/",
|
|
"start": "node -r module-alias/register ./dist --env=production",
|
|
"dev": "PORT=5000 nodemon",
|
|
"test": "nodemon --config ./spec/nodemon.json",
|
|
"test:no-reloading": "npx ts-node --files -r tsconfig-paths/register ./spec"
|
|
},
|
|
"nodemonConfig": {
|
|
"watch": [
|
|
"src"
|
|
],
|
|
"ext": "ts, html",
|
|
"ignore": [
|
|
"src/public"
|
|
],
|
|
"exec": "./node_modules/.bin/ts-node --files -r tsconfig-paths/register ./src"
|
|
},
|
|
"_moduleAliases": {
|
|
"@src": "dist"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.10.0"
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-rekognition": "^3.901.0",
|
|
"@aws-sdk/client-s3": "^3.901.0",
|
|
"@aws-sdk/s3-request-presigner": "^3.901.0",
|
|
"@prisma/client": "^6.16.2",
|
|
"bcrypt": "^6.0.0",
|
|
"bcryptjs": "^3.0.2",
|
|
"cookie-parser": "^1.4.6",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.6.1",
|
|
"express": "^4.18.2",
|
|
"express-async-errors": "^3.1.1",
|
|
"helmet": "^7.2.0",
|
|
"inserturlparams": "^1.0.1",
|
|
"jet-logger": "^1.3.1",
|
|
"jet-validator": "^1.1.1",
|
|
"jsonfile": "^6.1.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"module-alias": "^2.2.3",
|
|
"morgan": "^1.10.0",
|
|
"multer": "^2.0.2",
|
|
"prisma": "^6.16.2",
|
|
"sharp": "^0.34.4",
|
|
"ts-command-line-args": "^2.5.1",
|
|
"winston": "^3.18.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcrypt": "^6.0.0",
|
|
"@types/cookie-parser": "^1.4.3",
|
|
"@types/cors": "^2.8.19",
|
|
"@types/express": "^4.17.17",
|
|
"@types/find": "^0.2.1",
|
|
"@types/fs-extra": "^11.0.1",
|
|
"@types/jasmine": "^4.3.5",
|
|
"@types/jsonfile": "^6.1.1",
|
|
"@types/jsonwebtoken": "^9.0.10",
|
|
"@types/morgan": "^1.9.4",
|
|
"@types/multer": "^2.0.0",
|
|
"@types/node": "^20.4.2",
|
|
"@types/sharp": "^0.31.1",
|
|
"@types/supertest": "^2.0.12",
|
|
"@types/winston": "^2.4.4",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"eslint": "^8.44.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"find": "^0.3.0",
|
|
"fs-extra": "^11.1.1",
|
|
"jasmine": "^5.0.2",
|
|
"nodemon": "^3.0.1",
|
|
"supertest": "^6.3.3",
|
|
"ts-node": "^10.9.1",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|