-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 707 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 707 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
{
"name": "nodejs-template",
"type": "module",
"version": "0.0.0",
"sideEffects": false,
"engines": {
"node": ">=18.x",
"pnpm": ">=10.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "npx lefthook install",
"commit": "git-cz",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^4.12.0",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"commitizen": "^4.3.1",
"cz-git": "^1.11.1",
"eslint": "^9.25.1",
"lefthook": "^1.11.11",
"typescript": "^5.8.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}