-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
121 lines (121 loc) · 3.56 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@great-expectations/jsonforms-antd-renderers",
"private": false,
"license": "MIT",
"description": "ant design renderer set for the jsonforms declarative form framework",
"packageManager": "[email protected]",
"keywords": [
"jsonschema",
"form",
"jsonforms",
"antd",
"react",
"declarative"
],
"version": "0.0.0-semantic-release",
"files": [
"lib/**/*"
],
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/cjs/index.d.ts",
"exports": {
"require": {
"types": "./lib/cjs/index.d.ts",
"default": "./lib/cjs/index.js"
},
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/index.js"
},
"default": "./lib/cjs/index.js"
},
"publishConfig": {
"provenance": true,
"access": "public"
},
"release": {
"branches": [
"main"
]
},
"repository": {
"type": "git",
"url": "https://github.com/great-expectations/jsonforms-antd-renderers.git"
},
"scripts": {
"clean": "rm -rf ./lib",
"build": "pnpm run clean && pnpm run build:esm && pnpm run build:cjs",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"prepack": "pnpm run build",
"test": "vitest",
"test:cov": "VITE_CJS_IGNORE_WARNING=true vitest run --coverage --reporter=junit --outputFile=./junit.xml",
"tsc": "tsc",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format:write": "prettier . --write",
"format:check": "prettier . --check",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"@ant-design/icons": "^5.3.0",
"@jsonforms/core": "^3.3.0",
"@jsonforms/react": "^3.3.0",
"antd": "^5.14.0",
"dayjs": "^1",
"react": "^17 || ^18"
},
"devDependencies": {
"@ant-design/icons": "^5.5.0",
"@jsonforms/core": "^3.4.0",
"@jsonforms/react": "^3.4.0",
"@storybook/addon-essentials": "^7.6.20",
"@storybook/addon-interactions": "^7.6.20",
"@storybook/addon-links": "^7.6.20",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^7.6.20",
"@storybook/react": "^7.6.20",
"@storybook/react-vite": "^7.6.20",
"@storybook/test": "^7.6.20",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/lodash.isempty": "^4.4.9",
"@types/lodash.merge": "^4.6.9",
"@types/lodash.range": "^3.2.9",
"@types/lodash.startcase": "^4.4.9",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-istanbul": "1.2.2",
"@vitest/ui": "^1.6.0",
"antd": "^5.20.6",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-testing-library": "^6.3.0",
"jsdom": "^24.1.3",
"json-schema-to-ts": "^3.1.1",
"prettier": "3.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"semantic-release": "^23.1.1",
"storybook": "^7.6.20",
"typescript": "^5.6.2",
"vite": "^5.4.6",
"vitest": "^1.6.0"
},
"dependencies": {
"lodash.isempty": "^4.4.0",
"lodash.merge": "^4.6.2",
"lodash.range": "^3.2.0",
"lodash.startcase": "^4.4.0"
}
}