forked from gutentag2012/form-signals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.35 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
{
"name": "form-signals",
"private": true,
"repository": "todo",
"packageManager": "[email protected]",
"type": "module",
"namespace": "form-signals",
"scripts": {
"style": "pnpm dlx @biomejs/biome check .",
"style:fix": "pnpm dlx @biomejs/biome check --write .",
"style:fix:unsafe": "pnpm dlx @biomejs/biome check --write --unsafe .",
"test": "nx run-many --target=test --all",
"test:dev-tools-react": "nx test dev-tools-react",
"test:devtools": "nx test devtools-react",
"test:core": "nx test form-core",
"test:react": "nx test form-react",
"test:validator-zod": "nx test @form-signals/validation-adapter-zod",
"build": "nx run-many --target=build --all",
"build:dev-tools-react": "nx build dev-tools-react",
"build:core": "nx build form-core",
"build:react": "nx build form-react",
"build:validator-zod": "nx build validation-adapter-zod",
"example:react:async:form-signals": "nx example async-form-signals-react",
"example:react:complex:form-signals": "nx example complex-product-details-form-signals-react",
"example:react:complex:react-hook-form": "nx example complex-product-details-react-hook-form-react",
"example:react:complex:tanstack-form": "nx example complex-product-details-tanstack-form-react",
"example:react:e-commerce:form-signals": "nx example e-commerce-form-signals-react",
"example:react:files:form-signals": "nx example files-form-signals-react",
"example:react:performance:form-signals": "nx example performance-test-form-signals-react",
"example:react:simple:form-signals": "nx example simple-form-signals-react",
"example:react:step-wizard:form-signals": "nx example step-wizard-form-signals-react",
"example:react-native:form-signals": "nx example native-form-signals-react-native",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"release": "node ./scripts/release.cjs"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@nx/js": "19.8.3",
"@types/node": "^22.7.4",
"@vitest/coverage-istanbul": "^2.1.2",
"jsdom": "^25.0.1",
"nx": "19.8.3",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.3",
"vite-plugin-lib-inject-css": "^2.1.1",
"vitepress": "^1.3.4",
"vitepress-plugin-tabs": "^0.5.0",
"vitest": "^2.1.2"
}
}