forked from edmundhung/conform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.68 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
{
"private": true,
"name": "conform",
"license": "MIT",
"scripts": {
"build": "pnpm run --filter \"./packages/*\" \"/^build:.*/\"",
"dev": "pnpm run \"/^dev:.*/\"",
"dev:packages": "pnpm run --filter \"./packages/*\" \"/^dev:.*/\"",
"dev:playground": "pnpm --filter ./playground run dev",
"guide": "pnpm --filter ./guide run dev ",
"test": "pnpm run \"/^test:.*/\"",
"test:api": "vitest --watch",
"test:e2e": "playwright test --ui",
"version": "changeset version && pnpm install --lockfile-only && .github/version.sh",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx .",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@conform-to/dom": "workspace:*",
"@conform-to/react": "workspace:*",
"@conform-to/validitystate": "workspace:*",
"@conform-to/yup": "workspace:*",
"@conform-to/zod": "workspace:*",
"@playwright/test": "^1.44.1",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"pkg-pr-new": "^0.0.20",
"prettier": "^3.2.5",
"typescript": "^5.2.2",
"vitest": "^1.6.0",
"yup": "^0.32.11",
"zod": "3.21.4"
},
"packageManager": "[email protected]+sha256.22e36fba7f4880ecf749a5ca128b8435da085ecd49575e7fb9e64d6bf4fad394",
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --ignore-path .gitignore --cache --ext .js,.jsx,.ts,.tsx",
"*.{js,jsx,ts,tsx,css,json,yaml,md}": "prettier --write"
}
}