-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "express-ts-boilerplate",
"version": "1.0.0",
"main": "index.js",
"repository": "",
"author": "",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"start": "node ./dist/index.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier": "prettier --write \"src/**/*.ts\"",
"format": "yarn prettier && yarn lint:fix",
"pre": "git pull && yarn && yarn dev",
"build": "rm -rf dist && yarn tsc",
"tsc": "tsc"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint:fix",
"yarn prettier"
]
},
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"eslint": "^9.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-unused-imports": "^3.1.0",
"express": "^4.19.2",
"http-status": "^1.7.4",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mongoose": "^8.3.0",
"pino": "^8.20.0",
"pino-pretty": "^11.0.0",
"prettier": "^3.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.4",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.13",
"@types/ejs": "^3.1.4",
"@types/express": "^4.17.17",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"ts-node": "^10.9.1"
}
}