-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.25 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
{
"name": "vite-plugin-lwc-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@10.11.0",
"scripts": {
"build": "pnpm -r run build",
"bump": "pnpm changeset version",
"dev": "pnpm -r --filter='./packages/*' run dev",
"test": "vitest",
"prepare": "npx simple-git-hooks",
"lint": "eslint .",
"example:csr": "pnpm -r --filter='./examples/csr' run dev",
"example:csr-with-base-components": "pnpm -r --filter='./examples/csr-with-base-components' run dev",
"example:ssr": "pnpm -r --filter='./examples/ssr' run dev",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@eslint/js": "^9.28.0",
"@types/node": "^22.15.30",
"@vitest/browser": "^3.1.4",
"@vitest/ui": "^3.1.4",
"eslint": "^9.27.0",
"eslint-config-flat-gitignore": "^2.1.0",
"globals": "^16.2.0",
"lint-staged": "^16.0.0",
"playwright": "^1.52.0",
"simple-git-hooks": "^2.13.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vite": "^6.3.5",
"vite-plugin-lwc": "workspace:^",
"vitest": "^3.1.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}