forked from networknt/react-schema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.65 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
{
"name": "react-schema-form",
"version": "0.6.15",
"description": "React json schema form",
"keywords": [
"json schema",
"schema form",
"react",
"react-component",
"form"
],
"author": "Steve Hu, Nicholas Azar, Xavi Torelló, Greg Taschuk, Gene Sumchenko, Dmytro V. Dogadailo, Naeem Baghi",
"license": "MIT",
"main": "./lib/index",
"engines": {
"npm": "^6.4.1"
},
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"css",
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/networknt/react-schema-form.git"
},
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.11",
"notevil": "^1.3.1",
"objectpath": "1.2.2",
"react-autosuggest": "^9.3.4",
"supports-color": "^7.0.0",
"tv4": "^1.2.7",
"webpack-config": "^7.5.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-syntax-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^4.2.0",
"@material-ui/icons": "^4.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.5",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-runtime": "6.26.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint": "6.0.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-flowtype-errors": "4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "0.102.0",
"jest-cli": "^24.8.0",
"jsdom": "15.1.1",
"jsdom-global": "3.0.2",
"prettier": "1.18.2",
"react": "^16.8",
"react-dom": "^16.8",
"react-hot-loader": "4.12.5",
"react-test-renderer": "16.8.6",
"rimraf": "^2.6.2",
"webpack": "4.35.2",
"webpack-cli": "3.3.5"
},
"peerDependencies": {
"react": "*",
"react-dom": "*",
"@material-ui/core": ">=4.0.0",
"@material-ui/icons": ">=4.0.0"
},
"scripts": {
"preversion": "webpack -p",
"prepublishOnly": "rimraf lib && NODE_ENV=production babel src -d lib",
"lint": "eslint src",
"test": "jest --runInBand"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"roots": [
"src"
],
"testEnvironment": "node"
}
}