forked from rjsf-team/react-jsonschema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.42 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-jsonschema-form",
"private": true,
"description": "monorepo for react-jsonschema-form and its themes",
"engines": {
"node": ">=20"
},
"scripts": {
"test": "nx run-many --parallel=2 --target=test",
"test:update": "nx run-many --parallel=2 --target=test:update",
"lint": "nx run-many --target=lint",
"cs-check": "nx run-many --target=cs-check",
"cs-format": "nx run-many --target=cs-format",
"clean-build": "rimraf packages/*/tsconfig.tsbuildinfo && rimraf packages/*/lib && rimraf packages/*/dist && pnpm run build",
"build": "nx run-many --target=build",
"build-serial": "nx run-many --target=build --parallel=1",
"start": "echo 'use \"pnpm run build\" from main directory and then \"pnpm start\" in the playground package'",
"pre-commit:husky": "nx run-many --parallel=1 --target=precommit",
"prepare": "is-ci || husky",
"format": "oxfmt .",
"format-check": "oxfmt --check .",
"bump-all-packages": "echo 'NOTE: Make sure to sanity check the playground locally before commiting changes' && pnpm update --latest && pnpm install && pnpm run lint && pnpm run build && pnpm run test",
"bump-peer-deps": "node scripts/bump-peer-deps.js",
"refresh-node-modules": "rimraf packages/*/node_modules && rimraf node_modules && pnpm install",
"commit-package-changes": "git add pnpm-lock.yaml packages/*/package*.json && cross-env CI=skipPrecommit git commit -m 'updated package*.json after versioning' && git push",
"post-versioning": "echo 'This will take a while...' && pnpm run bump-peer-deps && pnpm run refresh-node-modules && pnpm run commit-package-changes && pnpm run update-version-tags",
"update-version-tags": "git tag -f $(node scripts/get-version-tag.js) && git push -f origin $(node scripts/get-version-tag.js)",
"nuke-build-env": "rimraf .nx && rimraf pnpm-lock.yaml",
"sanity-check": "pnpm run lint && pnpm run build && pnpm run test"
},
"license": "Apache-2.0",
"homepage": "https://github.com/rjsf-team/react-jsonschema-form",
"devDependencies": {
"@nx/js": "^23.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/estree": "^1.0.9",
"@types/lodash": "^4.17.24",
"@types/node": "^24.13.2",
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@types/react-test-renderer": "^18.3.1",
"@vitest/coverage-v8": "^4.1.9",
"ajv": "^8.20.0",
"cross-env": "^10.1.0",
"esbuild": "^0.28.1",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"jsdom": "^29.1.1",
"jsdom-testing-mocks": "^1.16.0",
"lint-staged": "^17.0.8",
"move-file-cli": "^3.0.0",
"nx": "^23.0.1",
"oxfmt": "^0.55.0",
"oxlint": "^1.70.0",
"oxlint-tsgolint": "^0.23.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.1.3",
"rollup": "^4.62.2",
"tsc-alias": "^1.8.17",
"tslib": "^2.8.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"workspaces": [
"packages/antd",
"packages/chakra-ui",
"packages/core",
"packages/daisyui",
"packages/docs",
"packages/fluentui-rc",
"packages/mantine",
"packages/mui",
"packages/playground",
"packages/primereact",
"packages/react-bootstrap",
"packages/semantic-ui",
"packages/utils",
"packages/validator-ajv8",
"packages/validator-ata",
"packages/snapshot-tests",
"packages/shadcn"
],
"packageManager": "pnpm@10.17.1"
}