-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.99 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
{
"name": "express-typescript-boilerplate",
"version": "1.0.0",
"description": "Express Typescript Boilerplate",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --inspect=8181 --respawn --transpile-only src/index.ts",
"start": "npm run build && node ./dist/src/index.js",
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"format:check": "prettier -c \"**/*.{js,ts,json}\"",
"format": "prettier -w \"**/*.{js,ts,json}\"",
"lint": "eslint --fix ./src/*",
"prepare": "husky install",
"pre-commit": "npm run typecheck && lint-staged && jest"
},
"lint-staged": {
"src/**/*.{js,ts}": "eslint",
"**/*.{js,ts,json}": "prettier --write"
},
"keywords": [],
"author": "binoy638",
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/dotenv-safe": "^8.1.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.1",
"eslint-plugin-security": "^2.1.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-unicorn": "^50.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"winston": "^3.11.0",
"zod": "^3.22.4"
}
}