-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name": "easy-data-dashboard",
"type": "module",
"version": "1.0.0",
"description": "",
"author": "ysansan",
"license": "MIT",
"keywords": [],
"scripts": {
"designer:dev": "pnpm -F designer dev",
"designer:type-check": "pnpm -F designer type-check",
"docs:dev": "pnpm -F docs docs:dev",
"docs:build": "pnpm -F docs docs:build",
"commit": "git-cz",
"prepare": "husky"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^22.9.1",
"commitizen": "^4.3.0",
"cz-git": "^1.9.3",
"eslint": "^9.10.0",
"eslint-plugin-format": "^0.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"typescript": "~5.4.0",
"vitest": "^1.4.0"
},
"lint-staged": {
"{apps,packages}/**/*.{ts,tsx,vue,html,css,md,json,yml,yaml}": [
"pnpm eslint . --quiet"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
}
}