-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "dev-camp-session-3",
"version": "1.0.0",
"description": "Session 3 of DevCamp 2024. Focuses on Express.js, MongoDB and authentication",
"repository": "git@github.com:gdsc-hcmut/dev-camp-session-3.git",
"author": "Quoc Hung <truongquochung312+1@gmail.com>",
"license": "MIT",
"scripts": {
"start": "ts-node src/index.ts"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/lodash": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3"
},
"dependencies": {
"@faker-js/faker": "^9.2.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"compression": "^1.7.5",
"cors": "^2.8.5",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^8.8.0",
"zod": "^3.23.8"
}
}