This repository has been archived by the owner on Dec 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
105 lines (105 loc) · 3.62 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
{
"name": "@projectopenubl/xml-builder-react",
"version": "0.1.6",
"description": "This library provides a set of common React components for use with the XML Builder family.",
"main": "dist/js/index.js",
"module": "dist/esm/index.js",
"types": "dist/js/index.d.ts",
"private": false,
"publishConfig": {
"access": "public",
"tag": "prerelease"
},
"repository": {
"type": "git",
"url": "https://github.com/xml-builder/xml-builder-react.git"
},
"keywords": [
"react",
"xml-builder"
],
"author": "Project OpenUBL",
"license": "MIT",
"bugs": {
"url": "https://github.com/xml-builder/xml-builder-react/issues"
},
"homepage": "https://github.com/xml-builder/xml-builder-react#readme",
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"react-scripts": "3.3.1",
"typescript": "~3.7.2"
},
"scripts": {
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"build": "yarn build:babel && yarn build:types && node ./scripts/copyTS.js && node ./scripts/copyStyles.js",
"build:babel": "concurrently \"yarn build:babel:esm && yarn build:babel:umd\" \"yarn build:babel:cjs\"",
"build:babel:cjs": "BABEL_ENV=cjs babel --source-maps --extensions \".js,.ts,.tsx\" src --out-dir dist/js --presets=@babel/env",
"build:babel:esm": "BABEL_ENV=esm babel --source-maps --extensions \".js,.ts,.tsx\" src --out-dir dist/esm",
"build:babel:umd": "BABEL_ENV=umd babel --source-maps --extensions \".js\" dist/esm --out-dir dist/umd --plugins=transform-es2015-modules-umd",
"build:types": "tsc -p tsconfig.gen-dts.json",
"clean": "rimraf dist",
"develop": "yarn build:types && yarn build:babel:esm --skip-initial-build --watch --verbose"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@material-ui/core": "^4.9.2",
"@material-ui/lab": "^4.0.0-alpha.42",
"@patternfly/react-core": "^3.134.2",
"@patternfly/react-icons": "^3.14.42",
"@patternfly/react-table": "^2.25.6",
"@storybook/addon-actions": "^6.0.0-alpha.10",
"@storybook/addon-docs": "^6.0.0-alpha.10",
"@storybook/addon-info": "^6.0.0-alpha.2",
"@storybook/addon-links": "^6.0.0-alpha.10",
"@storybook/addons": "^6.0.0-alpha.10",
"@storybook/preset-create-react-app": "^1.5.2",
"@storybook/react": "^6.0.0-alpha.10",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/yup": "^0.26.30",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-typescript-to-proptypes": "^1.2.1",
"concurrently": "^5.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"jest-enzyme": "^7.1.2",
"react": "^16.12.0",
"react-ace": "^8.0.0",
"react-dom": "^16.12.0",
"react-hook-form": "^4.9.3",
"react-json-view": "^1.19.1",
"yup": "^0.28.1"
},
"peerDependencies": {
"@patternfly/react-core": "^3.134.2",
"@patternfly/react-icons": "^3.14.42",
"@patternfly/react-table": "^2.25.6",
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}