[MAJOR][FIRSTCOMMIT] Added basic routes, controllers, repos to kanban service (no postgres yet)
This commit is contained in:
16
package.json
16
package.json
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "Seer",
|
||||
"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": "nodemon",
|
||||
"dev": "PORT=5000 nodemon",
|
||||
"test": "nodemon --config ./spec/nodemon.json",
|
||||
"test:no-reloading": "npx ts-node --files -r tsconfig-paths/register ./spec"
|
||||
},
|
||||
@@ -27,26 +27,32 @@
|
||||
"node": ">=8.10.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@prisma/client": "^6.16.2",
|
||||
"bcrypt": "^6.0.0",
|
||||
"cookie-parser": "^1.4.6",
|
||||
"dotenv": "^16.3.1",
|
||||
"dotenv": "^16.6.1",
|
||||
"express": "^4.18.2",
|
||||
"express-async-errors": "^3.1.1",
|
||||
"helmet": "^7.0.0",
|
||||
"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",
|
||||
"prisma": "^6.16.2",
|
||||
"ts-command-line-args": "^2.5.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bcrypt": "^6.0.0",
|
||||
"@types/cookie-parser": "^1.4.3",
|
||||
"@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/node": "^20.4.2",
|
||||
"@types/supertest": "^2.0.12",
|
||||
@@ -61,6 +67,6 @@
|
||||
"supertest": "^6.3.3",
|
||||
"ts-node": "^10.9.1",
|
||||
"tsconfig-paths": "^4.2.0",
|
||||
"typescript": "^5.1.6"
|
||||
"typescript": "^5.9.2"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user