-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
126 lines (126 loc) · 4.43 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
{
"name": "material-ui-react-jsonschema-form",
"version": "0.2.0",
"description": "A simple React component capable of building HTML forms out of a JSON schema based on the Material UI React library. Primary dependency is Mozilla react-jsonschema-form",
"scripts": {
"build:readme": "toctoc README.md -w",
"build:lib": "rimraf lib && cross-env NODE_ENV=production babel -d lib/ src/",
"build:dist": "rimraf dist && cross-env NODE_ENV=production webpack --config webpack.config.dist.js",
"build:playground": "rimraf build && cross-env NODE_ENV=production webpack --config webpack.config.prod.js && cp playground/index.prod.html build/index.html",
"cs-check": "prettier -l $npm_package_prettierOptions '{playground,src,test}/**/*.js'",
"cs-format": "prettier --jsx-bracket-same-line --trailing-comma es5 --use-tabs false --semi --tab-width 2 '{playground,src,test}/**/*.js' --write",
"dist": "npm run build:lib && npm run build:dist",
"lint": "eslint --format unix src playground",
"prepare": "npm run dist",
"precommit": "lint-staged",
"publish-to-gh-pages": "npm run build:playground && gh-pages --dist build/",
"publish-to-npm": "npm run build:readme && npm run dist && npm publish",
"preversion": "npm run build:playground && npm run dist && npm run build:readme && npm run cs-check && npm run lint",
"start": "node devServer.js",
"tdd": "cross-env NODE_ENV=test mocha --require @babel/register --watch --require ./test/setup-jsdom.js test/**/*_test.js",
"test_": "cross-env NODE_ENV=test mocha --require @babel/register --require ./test/setup-jsdom.js test/**/*_test.js",
"test": "exit 0"
},
"prettierOptions": "--jsx-bracket-same-line --trailing-comma es5 --semi --tab-width 2",
"lint-staged": {
"{playground,src,test}/**/*.js": [
"npm run lint",
"npm run cs-format",
"git add"
]
},
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"engineStrict": false,
"engines": {
"npm": ">=2.14.7",
"node": ">=6"
},
"peerDependencies": {
"react": ">=16.6.3",
"react-dom": ">=16.6.3"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"@material-ui/core": "^3.7.0",
"@material-ui/icons": "^3.0.1",
"@material-ui/lab": "^3.0.0-alpha.26",
"ajv": "^6.6.2",
"core-js": "^2.5.7",
"lodash.topath": "^4.5.2",
"prop-types": "^15.5.8",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-jsonschema-form": "^1.2.1"
},
"devDependencies": {
"atob": "^2.0.3",
"babel-cli": "^6.18.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^4.2.0",
"codemirror": "^5.30.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.12.0",
"eslint-config-react-app": "^3.0.6",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.4.0",
"estraverse": "^4.2.0",
"estraverse-fb": "^1.3.1",
"express": "^4.14.0",
"gh-pages": "^2.0.1",
"html": "^1.0.0",
"husky": "^1.3.1",
"jsdom": "^13.1.0",
"json-loader": "^0.5.7",
"lint-staged": "^8.1.0",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^5.2.0",
"prettier": "^1.15.1",
"react": "^16.6.3",
"react-addons-test-utils": "^15.3.2",
"react-codemirror2": "^5.1.0",
"react-dom": "^16.6.3",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.3.3",
"rimraf": "^2.5.4",
"sinon": "^7.2.2",
"style-loader": "^0.23.1",
"toctoc": "^0.3.2",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "^3.4.0",
"webpack-hot-middleware": "^2.13.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cwhatley/material-ui-react-jsonschema-form.git"
},
"author": "Chris Whatley <whatleyc@gmail.com>",
"keywords": [
"react",
"form",
"json-schema",
"material-ui"
],
"license": "Apache-2.0",
"homepage": "https://github.com/cwhatley/material-ui-react-jsonschema-form#readme"
}