tech: added front subrepo, updated deps, npm -> bun

This commit is contained in:
Florian Sylvain
2024-10-08 21:24:50 +02:00
parent dcc6ab22ff
commit db35aa1f03
7 changed files with 33 additions and 10329 deletions
+3
View File
@@ -0,0 +1,3 @@
[submodule "snippets-manager-front"]
path = snippets-manager-front
url = git@github.com:Floriansylvain/snippets-manager-front.git
BIN
View File
Binary file not shown.
-1
View File
@@ -17,7 +17,6 @@ services:
retries: 10 retries: 10
backend: backend:
build: . build: .
image: snippetsmanager-backend
depends_on: depends_on:
db: db:
condition: service_healthy condition: service_healthy
-10299
View File
File diff suppressed because it is too large Load Diff
+28 -28
View File
@@ -16,38 +16,38 @@
"author": "", "author": "",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@prisma/client": "^4.10.1", "@prisma/client": "^5.20.0",
"bcrypt": "^5.1.0", "bcrypt": "^5.1.1",
"concurrently": "^7.6.0", "concurrently": "^9.0.1",
"cookie-parser": "^1.4.6", "cookie-parser": "^1.4.6",
"cors": "^2.8.5", "cors": "^2.8.5",
"dotenv": "^16.0.3", "dotenv": "^16.4.5",
"express": "^4.18.2", "express": "^4.21.0",
"jsonwebtoken": "^9.0.0", "jsonwebtoken": "^9.0.2",
"nodemon": "^2.0.20", "nodemon": "^3.1.7",
"prisma": "^4.10.1", "prisma": "^5.20.0",
"swagger-jsdoc": "^6.2.8", "swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.1", "swagger-ui-express": "^5.0.1",
"wait-on": "^7.0.1", "wait-on": "^8.0.1",
"zod": "^3.20.2" "zod": "^3.23.8"
}, },
"devDependencies": { "devDependencies": {
"@babel/preset-typescript": "^7.18.6", "@babel/preset-typescript": "^7.25.7",
"@types/bcrypt": "^5.0.0", "@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.3", "@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.13", "@types/cors": "^2.8.17",
"@types/express": "^4.17.16", "@types/express": "^5.0.0",
"@types/jest": "^29.4.0", "@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.1", "@types/jsonwebtoken": "^9.0.7",
"@types/supertest": "^2.0.12", "@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.1", "@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.3", "@types/swagger-ui-express": "^4.1.6",
"jest": "^29.4.1", "jest": "^29.7.0",
"npm": "^9.4.0", "npm": "^10.9.0",
"prettier": "^2.8.4", "prettier": "^3.3.3",
"supertest": "^6.3.3", "supertest": "^7.0.0",
"ts-jest": "^29.0.5", "ts-jest": "^29.2.5",
"ts-node": "^10.9.1", "ts-node": "^10.9.2",
"typescript": "^4.9.4" "typescript": "^5.6.2"
} }
} }
+1 -1
View File
@@ -101,5 +101,5 @@
"skipLibCheck": true /* Skip type checking all .d.ts files. */ "skipLibCheck": true /* Skip type checking all .d.ts files. */
}, },
"include": ["src/**/*"], "include": ["src/**/*"],
"exclude": ["src/**/*.test.ts", "node_modules"] "exclude": ["src/**/*.test.ts", "node_modules", "snippets-manager-front"]
} }