-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.98 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.98 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
57
58
59
60
61
62
63
64
65
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/LGLabGreg/react-qr-code.git"
},
"packageManager": "pnpm@10.29.3",
"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": "eslint .",
"prepare": "husky"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write --config .prettierrc"
],
"packages/**/*.{ts,tsx}": [
"eslint --config eslint.config.js --max-warnings=0"
],
"apps/docs/**/*.{ts,tsx}": [
"eslint --config apps/docs/eslint.config.mjs --max-warnings=0"
]
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/jsdom": "^27.0.0",
"@types/node": "^25.3.0",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "4.0.18",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@eslint/eslintrc": "^3.3.3",
"eslint-config-next": "16.1.6"
}
}