generated from hugomrdias/hd-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 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
{
"name": "hd-template",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"format": "prettier --write '**/*.{js,ts,yml,json}' --ignore-path .gitignore",
"format:check": "prettier --check '**/*.{js,ts,yml,json}' --ignore-path .gitignore",
"clean": "rm -rf docs node_modules pnpm-lock.yaml packages/*/{pnpm-lock.yaml,coverage,.nyc_output,dist,node_modules,.next}",
"lint": "pnpm -r --if-present run lint",
"test": "pnpm -r --if-present run test",
"build": "pnpm -r --if-present run build",
"docs": "typedoc --out docs"
},
"devDependencies": {
"depcheck": "^1.4.5",
"hd-scripts": "^8.0.0",
"lint-staged": "^14.0.1",
"prettier": "3.0.2",
"simple-git-hooks": "^2.9.0",
"typescript": "5.1.6"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,yml,json}": "prettier --write",
"*.js": "eslint --fix"
},
"prettier": "hd-scripts/prettier.config.js",
"engines": {
"node": ">=18"
}
}