-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.27 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
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@rjsf/playground",
"version": "6.2.3",
"description": "rjsf playground",
"private": true,
"type": "commonjs",
"scripts": {
"cs-check": "prettier -l \"src/**/*.ts?(x)\"",
"cs-format": "prettier \"src/**/*.ts?(x)\" --write",
"build": "rimraf build && cross-env NODE_ENV=production vite build",
"lint": "eslint src",
"precommit": "lint-staged",
"publish-to-gh-pages": "npm run build && gh-pages --dist build/",
"publish-to-npm": "npm run build && npm publish",
"start": "vite --force",
"preview": "vite preview",
"test": "jest"
},
"lint-staged": {
"src/**/*.ts?(x)": [
"eslint --fix"
]
},
"files": [
"dist",
"lib",
"src"
],
"engineStrict": false,
"engines": {
"node": ">=20"
},
"peerDependencies": {
"react": "^18.3.1"
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"@babel/runtime": "^7.28.4",
"@chakra-ui/react": "^3.28.0",
"@emotion/react": "^11.14.0",
"@mantine/core": "^8.3.6",
"@mantine/dates": "^8.3.6",
"@mantine/hooks": "^8.3.6",
"@mui/material": "^7.3.4",
"@rjsf/antd": "^6.2.0",
"@rjsf/chakra-ui": "^6.2.0",
"@rjsf/core": "^6.2.0",
"@rjsf/fluentui-rc": "^6.2.0",
"@rjsf/mui": "^6.2.0",
"@rjsf/primereact": "^6.2.0",
"@rjsf/react-bootstrap": "^6.2.0",
"@rjsf/semantic-ui": "^6.2.0",
"@rjsf/utils": "^6.2.0",
"@rjsf/validator-ajv8": "^6.2.0",
"ajv": "^8.17.1",
"ajv-i18n": "^4.2.0",
"antd": "^5.27.6",
"atob": "^2.1.2",
"chakra-react-select": "^6.1.0",
"core-js": "^3.46.0",
"dayjs": "^1.11.18",
"deep-freeze-es6": "^4.0.1",
"jss": "^10.10.0",
"lodash": "^4.17.21",
"lucide-react": "^0.548.0",
"monaco-editor": "^0.54.0",
"react": "^18.3.1",
"react-bootstrap": "^2.10.10",
"react-dom": "^18.3.1",
"react-frame-component": "^5.2.7",
"react-is": "^18.3.1",
"semantic-ui-react": "^2.1.5"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/register": "^7.28.3",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@monaco-editor/react": "^4.7.0",
"@mui/icons-material": "^7.3.4",
"@types/react-frame-component": "^4.1.6",
"@vitejs/plugin-react": "^5.1.0",
"eslint": "^8.57.1",
"gh-pages": "^6.3.0",
"html": "^1.0.0",
"html-webpack-plugin": "^5.6.4",
"loader-utils": "^3.3.1",
"mini-css-extract-plugin": "^2.9.4",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"source-map-loader": "^5.0.0",
"vite": "^7.1.12"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rjsf-team/react-jsonschema-form.git"
},
"author": "Nicolas Perriault <nperriault@mozilla.com>",
"contributors": [
"Heath Chiavettone <heath.chiavettone@freenome.com"
],
"keywords": [
"react",
"react 17",
"form",
"json-schema"
],
"license": "Apache-2.0",
"homepage": "https://github.com/rjsf-team/react-jsonschema-form",
"publishConfig": {
"access": "public"
}
}