-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.2 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.2 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
{
"name": "region-monorepo",
"version": "1.0.0",
"private": true,
"scripts": {
"lint": "eslint packages/region-core/src",
"lint-type": "pnpm --filter './packages/*' run lint-type",
"build": "pnpm --filter './packages/*' run build",
"test": "vitest run --coverage",
"lint-all": "pnpm lint && pnpm lint-type && pnpm test",
"prepare": "husky",
"publish-all": "pnpm lint-all && pnpm --filter './packages/*' publish"
},
"devDependencies": {
"@eslint/compat": "^1.3.1",
"@eslint/js": "^9.30.1",
"@hero-u/eslint-config": "^0.1.1",
"@stylistic/eslint-plugin": "^5.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/react": "^19.1.8",
"@types/react-test-renderer": "^19.1.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.30.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-test-renderer": "^19.1.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.42.0",
"vitest": "^3.2.4"
},
"packageManager": "[email protected]"
}