-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 787 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 787 Bytes
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
{
"name": "nodejs-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"scripts": {
"dev": "npx nodemon",
"build": "rimraf ./build && npx tsc",
"start": "npm run build && node build/main",
"lint": "npx eslint ./src",
"format": "npx eslint ./src --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.29.0",
"husky": "^8.0.2",
"nodemon": "^2.0.20",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}