forked from rjsf-team/react-jsonschema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"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",
"build": "lerna run --stream build",
"start": "lerna run start --stream --parallel"
},
"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",
"devDependencies": {
"husky": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit"
}
}
}