-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "node-typescript-starter",
"version": "0.1.0",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig-build.json",
"dev": "TZ=UTC nodemon --exec \"tsx ./src/index.ts\" -e ts",
"start": "npm run build && TZ=UTC node ./dist/index.js",
"test": "vitest",
"prepare": "husky",
"lint": "eslint . --fix",
"format": "prettier --write ."
},
"author": "A. Hassan (https://hassan.web.id)",
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/node": "^22.8.6",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "^3.4.1",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"prettier --write"
],
"*.md": "prettier --write"
}
}