-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
87 lines (87 loc) · 2.54 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
{
"name": "@kaoto-next/uniforms-patternfly",
"version": "0.7.17",
"description": "Patternfly forms for uniforms",
"license": "Apache-2.0",
"author": {
"name": "The Kaoto Team"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"homepage": "https://github.com/KaotoIO/uniforms-patternfly/tree/main/packages/uniforms-patternfly",
"repository": {
"type": "git",
"url": "https://github.com/KaotoIO/uniforms-patternfly.git"
},
"bugs": {
"url": "https://github.com/KaotoIO/uniforms-patternfly/issues"
},
"types": "./dist/esm/index.d.ts",
"main": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "yarn rimraf dist && yarn build:esm && yarn build:cjs",
"build:esm": "tsc --project tsconfig.esm.json && copyfiles -u 1 ./src/**/*.scss ./dist/esm",
"build:cjs": "tsc --project tsconfig.cjs.json && copyfiles -u 1 ./src/**/*.scss ./dist/cjs",
"test": "jest",
"publish": "lerna publish"
},
"dependencies": {
"invariant": "^2.2.4",
"lodash.clonedeep": "^4.5.0"
},
"peerDependencies": {
"@patternfly/react-core": "^5.0.0",
"@patternfly/react-icons": "^5.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uniforms": "4.0.0-alpha.5"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@lerna-lite/cli": "^3.0.0",
"@lerna-lite/publish": "^3.0.0",
"@lerna-lite/version": "^3.0.0",
"@patternfly/react-core": "^5.0.0",
"@patternfly/react-icons": "^5.0.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/invariant": "^2.2.35",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.168",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/simpl-schema": "^1.12.0",
"babel-jest": "^29.4.2",
"copyfiles": "^2.4.1",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^6.0.0",
"sass": "^1.70.0",
"simpl-schema": "^3.4.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"uniforms": "4.0.0-alpha.5",
"uniforms-bridge-simple-schema-2": "4.0.0-alpha.5"
},
"packageManager": "[email protected]"
}