-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.13 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
51
52
53
54
55
56
{
"name": "shined-react-use-monorepo",
"private": true,
"version": "1.11.0",
"packageManager": "[email protected]",
"license": "MIT",
"scripts": {
"dev": "pnpm -r --filter='@shined/*' dev",
"build": "pnpm -r --filter='@shined/*' build",
"lint": "biome check && oxlint ./packages && pnpm typecheck",
"lint:fix": "biome check --write --unsafe && oxlint ./packages --fix",
"prerelease": "pnpm lint",
"release": "bumpp -r",
"postrelease": "pnpm changelog && git add CHANGELOG.md && git commit -m 'chore: update changelog' && git push",
"test": "vitest --coverage --coverage.include 'packages/**/src/**/*.{ts,tsx}' --coverage.exclude '{**/demo.{ts,tsx},**/*.{demo,test,cy,ssr.test,ssr.cy}.{ts,tsx}}'",
"cy:open": "cypress open --component --browser chrome --config-file cypress.config.mjs",
"cy:run": "cypress run --component --browser chrome --config-file cypress.config.mjs",
"test:ci": "pnpm build && pnpm lint && vitest",
"docs:dev": "pnpm build && pnpm -C docs dev",
"docs:build": "CYPRESS_INSTALL_BINARY=0 pnpm install && pnpm build && pnpm -C docs build",
"docs:release": "pnpm -C docs release",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"typecheck": "pnpm -r typecheck",
"prepare": "is-ci || husky"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --unsafe --no-errors-on-unmatched"
]
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@shined/reactive": "^0.1.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^15.0.7",
"@types/node": "^22.10.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"bumpp": "^9.8.1",
"conventional-changelog-cli": "^5.0.0",
"cypress": "13.15.2",
"esno": "^4.8.0",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"jsdom": "^24.1.3",
"lint-staged": "^15.2.10",
"oxlint": "^0.14.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vitest": "^2.1.8"
}
}