-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "typescript-node-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"up": "docker-compose up",
"up:build": "docker-compose up --build",
"down": "docker-compose down",
"dev": "nodemon --config nodemon.json --inspect=0.0.0.0 src/index.ts",
"tsc": "tsc",
"test": "jest",
"prebuild": "rimraf build",
"build": "npm run tsc",
"prettier": "prettier",
"prepare": "node ./scripts/prepare.js"
},
"engines": {
"node": ">=16.0.0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"husky": "^7.0.4",
"jest": "^29.5.0",
"lint-staged": "^12.1.2",
"nodemon": "^2.0.21",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*.{ts,js,md}": "prettier --write"
}
}