-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.09 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
{
"name": "blockend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint . --cache --max-warnings=0",
"lint:fix": "eslint . --cache --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"typecheck": "tsc -p tsconfig.base.json --noEmit",
"validate": "pnpm format:check && pnpm lint && pnpm typecheck",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.33.2",
"dependencies": {
"prettier": "^3.8.4",
"turbo": "^2.9.18",
"typescript": "^6.0.3"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.0",
"@types/node": "^25.9.3",
"eslint": "^10.0.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"typescript-eslint": "^8.61.0"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,tsx,jsx,json,jsonc,md,mdx,yml,yaml,css,scss,html}": "prettier --write",
"*.{js,cjs,mjs,ts,tsx,jsx}": "eslint --cache --fix --max-warnings=0"
}
}