-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.53 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "js-template",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"packageManager": "pnpm@8.6.1",
"engines": {
"node": ">=18"
},
"scripts": {
"format": "prettier --write '**/*.{js,ts,jsx,tsx,yml,json,css}' --ignore-path .gitignore",
"format:check": "prettier --check '**/*.{js,ts,jsx,tsx,yml,json,css}' --ignore-path .gitignore",
"clean": "rm -rf docs node_modules pnpm-lock.yaml packages/*/{pnpm-lock.yaml,coverage,.nyc_output,dist,node_modules} packages/*/{pnpm-lock.yaml,coverage,.nyc_output,dist,node_modules}",
"lint": "pnpm -r --if-present run lint",
"test": "pnpm -r --if-present run test",
"check": "pnpm -r --if-present run check",
"build": "pnpm -r --if-present run build",
"docs": "typedoc --out docs --plugin typedoc-plugin-missing-exports --plugin typedoc-plugin-zod"
},
"devDependencies": {
"@fission-codes/eslint-config": "^0.0.4",
"depcheck": "^1.4.7",
"lint-staged": "^15.2.0",
"prettier": "3.1.1",
"simple-git-hooks": "^2.9.0",
"typedoc": "^0.25.4",
"typedoc-plugin-missing-exports": "^2.1.0",
"typedoc-plugin-zod": "^1.1.0",
"typescript": "5.3.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,yml,json,css}": "prettier --write",
"*": "eslint --fix"
},
"prettier": "@fission-codes/eslint-config/prettier.config.js",
"eslintConfig": {
"extends": [
"@fission-codes"
],
"ignorePatterns": [
"docs"
]
}
}