-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
83 lines (83 loc) · 2.27 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
{
"name": "react-schema-form",
"private": false,
"version": "1.0.5",
"description": "React JSON Schema Form",
"keywords": [
"json schema",
"schema form",
"react",
"react-component",
"form",
"react-schema-form",
"react schema form"
],
"author": "Steve Hu, Nicholas Azar, Xavi Torelló, Greg Taschuk, Gene Sumchenko, Dmytro V. Dogadailo, Naeem Baghi",
"license": "MIT",
"repository": "https://github.com/networknt/react-schema-form.git",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"predeploy": "cd example && yarn install && yarn build",
"deploy": "gh-pages -d example/dist"
},
"dependencies": {
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"objectpath": "^2.0.0",
"react-checkbox-tree": "^1.8.0",
"supports-color": "^9.4.0",
"tv4": "^1.3.0",
"universal-cookie": "^7.2.2"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@mui/icons-material": "^6.1.6",
"@mui/material": "^6.1.6",
"@mui/styles": "^6.1.6",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.13.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"gh-pages": "^6.2.0",
"globals": "^15.11.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite": "^5.4.10"
},
"peerDependencies": {
"@babel/runtime": "^7.26.0",
"@codemirror/autocomplete": "^6.18.2",
"@codemirror/language": "^6.10.3",
"@codemirror/lint": "^6.8.2",
"@codemirror/search": "^6.5.7",
"@codemirror/state": "^6.4.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.34.2",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@lezer/common": "^1.2.3",
"@mui/icons-material": "^6.1.6",
"@mui/material": "^6.1.6",
"@mui/styles": "^6.1.6",
"@uiw/react-markdown-editor": "^6.1.2",
"codemirror": "^6.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"files": [
"dist"
],
"main": "./dist/react-schema-form.umd.cjs",
"module": "./dist/react-schema-form.js",
"exports": {
".": {
"import": "./dist/react-schema-form.js",
"require": "./dist/react-schema-form.umd.cjs"
}
}
}