This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 2.46 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
{
"name": "formtron",
"version": "0.0.0",
"description": "JSON form builder for React.",
"keywords": [],
"sideEffects": false,
"homepage": "https://github.com/stoplightio/formtron",
"bugs": "https://github.com/stoplightio/formtron/issues",
"author": "Stoplight <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/formtron"
},
"license": "Apache-2.0",
"main": "src/index.ts",
"files": [
"**/*"
],
"engines": {
"node": ">=8.3.0"
},
"scripts": {
"build": "sl-scripts build && cp ui-schema.json dist/ui-schema.json",
"build.docs": "build-storybook -c .storybook -o docs-auto",
"commit": "git-cz",
"lint": "tslint -c tslint.json 'src/**/*.ts?'",
"lint.fix": "yarn lint --fix",
"push.yalc": "yarn build && cd dist && yalc push",
"release": "sl-scripts release",
"release.docs": "sl-scripts release:docs",
"release.dryRun": "sl-scripts release --dry-run --debug",
"storybook": "start-storybook -p 9001",
"test": "jest",
"test.prod": "yarn lint && yarn test --coverage --no-cache",
"test.update": "yarn test --updateSnapshot",
"test.watch": "yarn test --watch"
},
"peerDependencies": {
"@stoplight/ui-kit": "^1.50.0",
"react": "16.x.x"
},
"dependencies": {
"@stoplight/memoize-one": "4.0.x",
"@stoplight/types": "^4.1.0",
"expression-eval": "1.4.0"
},
"devDependencies": {
"@fortawesome/free-solid-svg-icons": "^5.6.1",
"@stoplight/scripts": "^5.1.0",
"@stoplight/storybook-config": "^1.5.0",
"@stoplight/ui-kit": "^1.50.0",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.4",
"@types/react": "16.8.x",
"@types/react-dom": "16.8.x",
"filer": "0.0.44",
"jest": "^24.7.1",
"lodash": "^4.17.11",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-object-inspector": "0.2.x",
"ts-jest": "^24.0.2",
"tslint": "^5.15.0",
"tslint-config-stoplight": "^1.2.0",
"typescript": "3.4.3",
"util": "0.11.x"
},
"lint-staged": {
"*.{ts,tsx}$": [
"yarn lint.fix",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"extends": "@stoplight/scripts/release"
}
}