-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 851 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
{
"name": "node-ts-template",
"version": "1.0.0",
"description": "jsec's TypeScript starter kit",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/jsec/node-ts-template.git"
},
"keywords": [],
"author": "Jarrod Seccombe <[email protected]>",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"prepare": "node .husky/install.mjs",
"lint": "eslint --ext .ts . --max-warnings 0",
"test": "vitest"
},
"devDependencies": {
"@jarsec/eslint-config": "6.0.1",
"@jarsec/tsconfig": "3.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.15.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.5"
}
}