mirror of
https://github.com/zhigang1992/react-jsonschema-form.git
synced 2026-01-12 22:50:02 +08:00
Use Lerna to maintain core and themes as a monorepo. This should streamline creation of new themes and maintenance of existing theme(s).
31 lines
805 B
JSON
31 lines
805 B
JSON
{
|
|
"name": "react-jsonschema-form",
|
|
"version": "2.0.0-alpha.1",
|
|
"private": true,
|
|
"description": "monorepo for react-jsonschema-form and its themes",
|
|
"scripts": {
|
|
"postinstall": "lerna bootstrap",
|
|
"bootstrap": "lerna bootstrap",
|
|
"publish": "lerna publish",
|
|
"changed": "lerna changed",
|
|
"test": "lerna run test",
|
|
"lint": "lerna run lint",
|
|
"cs-check": "lerna run cs-check",
|
|
"cs-format": "lerna run cs-format",
|
|
"dist": "lerna run dist"
|
|
},
|
|
"dependencies": {
|
|
"prettier": "^1.18.2",
|
|
"lerna": "^3.18.3"
|
|
},
|
|
"prettier": {
|
|
"jsxBracketSameLine": true,
|
|
"trailingComma": "es5",
|
|
"useTabs": false,
|
|
"semi": true,
|
|
"tabWidth": 2
|
|
},
|
|
"license": "Apache-2.0",
|
|
"homepage": "https://github.com/mozilla-services/react-jsonschema-form#readme"
|
|
}
|