-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
141 lines (141 loc) · 4.1 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@rjsf/playground",
"version": "5.0.0-beta.9",
"description": "rjsf playground",
"private": true,
"type": "module",
"scripts": {
"build:lib": "rimraf lib && cross-env NODE_ENV=production babel -d lib/ src/",
"prepublishOnly": "npm run build:lib",
"build:dist": "rimraf dist && cross-env NODE_ENV=production vite build",
"cs-check": "prettier -l \"{playground,src,test}/**/*.js\"",
"cs-format": "prettier \"{playground,src,test}/**/*.js\" --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",
"preview": "vite preview"
},
"lint-staged": {
"{src}/**/*.js": [
"eslint --fix",
"prettier --write"
]
},
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"engineStrict": false,
"engines": {
"node": ">=14"
},
"peerDependencies": {
"react": ">=17"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@babel/runtime": "^7.18.9",
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.3",
"@fluentui/react": "^7.190.3",
"@material-ui/core": "^4.12.4",
"@mui/material": "^5.10.2",
"@rjsf/antd": "^5.0.0-beta.9",
"@rjsf/bootstrap-4": "^5.0.0-beta.9",
"@rjsf/chakra-ui": "^5.0.0-beta.9",
"@rjsf/core": "^5.0.0-beta.9",
"@rjsf/fluent-ui": "^5.0.0-beta.9",
"@rjsf/material-ui": "^5.0.0-beta.9",
"@rjsf/mui": "^5.0.0-beta.9",
"@rjsf/semantic-ui": "^5.0.0-beta.9",
"@rjsf/utils": "^5.0.0-beta.9",
"@rjsf/validator-ajv6": "^5.0.0-beta.9",
"@rjsf/validator-ajv8": "^5.0.0-beta.9",
"antd": "^4.22.8",
"axios": "^1.1.3",
"bootstrap": "^5.2.2",
"core-js": "^3.25.0",
"dayjs": "^1.11.5",
"framer-motion": "^5.6.0",
"jss": "^10.9.2",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react-app-polyfill": "^1.0.4",
"react-bootstrap": "^1.6.6",
"react-frame-component": "^4.1.1",
"react-is": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.18.9",
"@emotion/cache": "^11.10.3",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@material-ui/icons": "^4.11.3",
"@monaco-editor/react": "^4.4.5",
"@mui/icons-material": "^5.10.2",
"@vitejs/plugin-react": "^2.1.0",
"ajv": "^8.11.0",
"ajv-i18n": "^4.2.0",
"atob": "^2.1.2",
"cross-env": "^2.0.1",
"eslint": "^8.23.0",
"estraverse": "^4.2.0",
"estraverse-fb": "^1.3.1",
"express": "^4.18.1",
"gh-pages": "^3.1.0",
"html": "^1.0.0",
"html-webpack-plugin": "^5.5.0",
"loader-utils": "^3.2.0",
"mini-css-extract-plugin": "^2.6.1",
"monaco-editor": "^0.33.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-portal": "^4.2.2",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"rimraf": "^3.0.2",
"sass": "^1.54.5",
"source-map-loader": "^4.0.0",
"vite": "^3.1.1"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rjsf-team/react-jsonschema-form.git"
},
"author": "Nicolas Perriault <[email protected]>",
"contributors": [
"Heath Chiavettone <[email protected]"
],
"keywords": [
"react",
"react 17",
"form",
"json-schema"
],
"license": "Apache-2.0",
"homepage": "https://github.com/rjsf-team/react-jsonschema-form",
"publishConfig": {
"access": "public"
}
}