-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.4 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
{
"name": "@vates/data-table-workspace",
"private": true,
"workspaces": [
"packages/*",
"demo/*"
],
"scripts": {
"build": "npm run build -w packages/core && npm run build -w packages/react && npm run build -w packages/vue && npm run build -w packages/solid && npm run build -w packages/vanilla",
"dev:react": "npm run dev -w demo/react",
"dev:vue": "npm run dev -w demo/vue",
"dev:solid": "npm run dev -w demo/solid",
"dev:vanilla": "npm run dev -w demo/vanilla",
"type-check": "npm run type-check -w packages/core && npm run type-check -w packages/react && npm run type-check -w packages/vue && npm run type-check -w packages/solid && npm run type-check -w packages/vanilla",
"test": "npm run test -w packages/core && npm run test -w packages/react && npm run test -w packages/vue && npm run test -w packages/solid && npm run test -w packages/vanilla",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"prepare": "husky"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{js,mjs,cjs,ts,tsx,vue}": "eslint --fix"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"eslint": "^10.0.0",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.8.4",
"typescript-eslint": "^8.0.0"
},
"overrides": {
"typescript": "^5.5.0"
}
}