Skip to content

Commit

Permalink
Merge pull request #59 from techstartucalgary/build/dependency-update
Browse files Browse the repository at this point in the history
build: Dependencies cleaned up and documentation added in package.json
  • Loading branch information
Axeloooo authored Feb 5, 2024
2 parents 3f99f23 + 83e8335 commit 850b0ca
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 49 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@3
uses: actions/checkout@v3

- name: Install dependencies
run: cd backend && npm install
Expand Down
76 changes: 36 additions & 40 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 13 additions & 8 deletions backend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "backend",
"name": "rethread-backend",
"version": "1.0.0",
"description": "",
"description": "Backend for the Rethread mobile app",
"main": "src/index.ts",
"type": "module",
"scripts": {
Expand All @@ -11,9 +11,17 @@
"test": "npm run build && jest",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"keywords": [
"rethread",
"backend",
"typescript",
"prisma",
"express",
"zod",
"mysql"
],
"author": "techstartucalgary",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.6.0",
"cors": "^2.8.5",
Expand All @@ -31,14 +39,11 @@
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.2.5",
"prisma": "^5.6.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
}
}

0 comments on commit 850b0ca

Please sign in to comment.