-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 934 Bytes
/
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
{
"name": "nodejs-typescript-boilerplate",
"version": "1.0.0",
"description": "nodejs typescript boilerplate",
"main": "index.js",
"repository": "https://github.com/tdvuanh/nodejs-typescript-boilerplate",
"author": "tduyvuanh",
"license": "MIT",
"private": "true",
"scripts": {
"build": "npx tcs",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"concurrently": "^8.2.0",
"eslint": "^8.43.0",
"husky": "^8.0.3",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"type": "module"
}