This repository has been archived by the owner on Apr 6, 2022. It is now read-only.
forked from jeanlescure/material-ui-schema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.2 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
{
"name": "material-ui-schema-form",
"version": "0.9.9",
"description": "React json schema form based on Material UI components",
"keywords": [
"json schema",
"schema form",
"react",
"react-component",
"material-ui",
"form"
],
"author": "Jean M. Lescure",
"license": "MIT",
"main": "./lib/index",
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"css",
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/jeanlescure/material-ui-schema-form.git"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.16.6",
"moment": "^2.19.2",
"objectpath": "^1.2.1",
"tv4": "^1.2.7"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.40",
"@babel/preset-flow": "^7.0.0-beta.40",
"@babel/preset-react": "^7.0.0-beta.40",
"@babel/preset-stage-0": "^7.0.0-beta.40",
"@darkpos/pkgen": "^0.1.9",
"babel-eslint": "^8.2.1",
"eslint": "4.17",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.5.0",
"eslint-plugin-compat": "^1.0.4",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-flowtype-errors": "^3.3.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.68.0",
"prettier": "^1.7.0",
"yarn": "^1.3.2",
"react": "^16.3.0"
},
"peerDependencies": {
"material-ui": "^1.0.0-beta.39",
"react": "^16.3.0",
"react-datetime": "^2.11.0",
"react-dom": "^16.3.0"
},
"scripts": {
"lint": "eslint src",
"preversion": "webpack -p",
"prepublish": "rimraf lib && babel src -d lib",
"test": "npm run lint && jest"
},
"jest": {
"testPathDirs": [
"src"
],
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/lodash",
"<rootDir>/node_modules/lodash-es"
]
}
}