-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.63 KB
/
package.json
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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "university-management-backend-auth-service",
"version": "1.0.0",
"description": "University Management Backend Authentication Service",
"main": "src/server.ts",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/server.ts",
"lint:check": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"lint:fix": "eslint . --fix",
"prettier:check": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"prettier:fix": "prettier --write .",
"lint-prettier": "yarn lint:check && yarn prettier:check",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Saalim Shadman",
"license": "ISC",
"lint-staged": {
"src/**/*.ts": "yarn lint-prettier"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.2.5",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint": "^0.8.19",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"staged": "^0.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/jsonwebtoken": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eslint": "^8.41.0",
"express": "^4.18.2",
"http-status": "^1.6.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.2.1",
"redis": "^4.6.10",
"winston": "^3.9.0",
"winston-daily-rotate-file": "^4.7.1",
"zod": "^3.21.4"
}
}