-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.61 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.61 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/LGLabGreg/react-qr-code.git"
},
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"dev": "pnpm concurrently --names packages,apps \"pnpm watch:packages\" \"pnpm watch:docs\"",
"watch:packages": "pnpm --filter \"./packages/**\" run build --watch",
"watch:docs": "pnpm --filter \"./apps/docs/**\" run dev",
"build:lib": "pnpm --filter \"./packages/**\" run build",
"ci:publish": "pnpm build:lib && pnpm publish -r && pnpm changeset tag",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "oxlint",
"format": "oxfmt",
"format:check": "oxfmt --check",
"prepare": "husky"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"oxfmt"
],
"packages/**/*.{ts,tsx}": [
"oxlint --deny-warnings"
],
"apps/docs/**/*.{ts,tsx}": [
"oxlint --config apps/docs/.oxlintrc.json --deny-warnings"
]
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jsdom": "^28.0.1",
"@types/node": "^25.6.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "4.1.4",
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^16.4.0",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"typescript": "~6.0.2",
"vite": "^8.0.8",
"vitest": "^4.1.4"
}
}