-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "vaccine-management-system",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"scripts": {
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node -r ts-node/register dist/src/index.js",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc --write '{src,tests}/**/*.ts'",
"test": "jest",
"test:dev": "jest --watchAll",
"test:cov": "jest --coverage",
"test:badges": "npm run test:cov && jest-coverage-badges --output './cov_badges'",
"install": "husky install",
"postinstall": "chmod ug+x .husky/*"
},
"lint-staged": {
"{src,tests}/**/*.ts": [
"npm run prettier-format",
"npm run lint"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-mock-extended": "^3.0.4",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"sinon": "^15.1.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^7.0.0",
"http-status-codes": "^2.2.0",
"jest-coverage-badges": "^1.1.2",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"winston": "^3.8.2"
}
}