-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.13 KB
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
{
"name": "node-app",
"version": "1.0.0",
"main": "./dist/index.js",
"license": "MIT",
"scripts": {
"start": "node .",
"start:ts": "ts-node src/index.ts",
"dev": "ts-node-dev --watch \"src\" --respawn src/index.ts",
"build": "tsc",
"lint": "eslint \"src/**/*.{ts,tsx}\" --max-warnings 0",
"format": "prettier . --write",
"prepare": "husky"
},
"dependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-node-dev": "^2.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint",
"yarn format"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">=20.11",
"yarn": "1"
},
"volta": {
"node": "20.20.0",
"yarn": "1.22.22"
}
}