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
108 lines (108 loc) · 4.26 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 4.26 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"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 && npm run build",
"build": "nx run-many --target=build",
"build-serial": "nx run-many --target=build --parallel=1",
"start": "echo 'use \"npm run build\" from main directory and then \"npm start\" in the playground package'",
"pre-commit:husky": "nx run-many --parallel=1 --target=precommit",
"prepare": "is-ci || husky",
"format": "prettier --write .",
"format-check": "prettier --check .",
"bump-all-packages": "echo 'NOTE: Make sure to sanity check the playground locally before commiting changes' && npm update --save && npm install && npm run lint && npm run build && npm run test",
"bump-peer-deps": "node scripts/bump-peer-deps.js",
"refresh-node-modules": "rimraf packages/*/node_modules && rimraf node_modules && npm install",
"commit-package-changes": "git add package-lock.json 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...' && npm run bump-peer-deps && npm run refresh-node-modules && npm run commit-package-changes && npm 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 package-lock.json",
"sanity-check": "npm run lint && npm run build && npm run test"
},
"license": "Apache-2.0",
"homepage": "https://github.com/rjsf-team/react-jsonschema-form",
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-class-static-block": "^7.28.3",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@nx/js": "^22.0.2",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.14.0",
"@swc/helpers": "^0.5.17",
"@swc/jest": "^0.2.39",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/estree": "^1.0.8",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.20",
"@types/node": "^22.18.13",
"@types/prettier": "^3.0.0",
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.7",
"@types/react-test-renderer": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.54.0",
"ajv": "^8.17.1",
"babel-jest": "^30.0.5",
"cross-env": "^10.1.0",
"esbuild": "^0.25.11",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-watch-typeahead": "^3.0.1",
"lint-staged": "^16.2.6",
"move-file-cli": "^3.0.0",
"nx": "^22.0.2",
"prettier": "^3.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"rollup": "^4.54.0",
"ts-jest": "^29.4.5",
"tsc-alias": "^1.8.16",
"tslib": "^2.8.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"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/snapshot-tests",
"packages/shadcn"
]
}