-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.34 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
{
"name": "typescript-boilerplate",
"version": "0.0.0",
"description": "TypeScript Boilerplate for Node.js Projects",
"license": "MIT",
"author": "Munjal Dhamecha",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && tsc --noEmitOnError",
"build:watch": "npm run build -- --watch",
"clean": "rimraf dist coverage",
"commit": "git-cz",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"release": "standard-version",
"release:mock": "npm run release -- --dry-run",
"test": "vitest",
"test:watch": "npm run test -- --watch"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^21.2.0",
"@types/node": "^26.1.1",
"@typescript-eslint/eslint-plugin": "^8.64.0",
"@typescript-eslint/parser": "^8.61.0",
"@vitest/coverage-v8": "^4.1.10",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"husky": "^9.1.7",
"lint-staged": "^17.1.0",
"prettier": "^3.9.5",
"rimraf": "^6.1.3",
"sort-package-json": "^4.0.0",
"standard-version": "^9.5.0",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}