-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
167 lines (167 loc) · 5.38 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"name": "@cloudquery/plugin-config-ui-lib",
"description": "Plugin configuration UI library for CloudQuery Cloud App",
"version": "4.2.3",
"private": false,
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"bin": {
"create-app": "./dist/scripts/generate-cloud-config-ui.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
},
"./components/devWrapper": {
"types": "./dist/components/devWrapper.d.ts",
"import": "./dist/components/devWrapper.esm.js",
"require": "./dist/components/devWrapper.cjs.js"
},
"./e2e-utils": {
"types": "./dist/e2e-utils/index.d.ts",
"import": "./dist/e2e-utils/index.esm.js",
"require": "./dist/e2e-utils/index.cjs.js"
},
"./scripts/*": {
"require": "./dist/scripts/*"
},
"./.eslintrc.js": "./.eslintrc.js",
"./.prettierrc.js": "./.prettierrc.js"
},
"files": [
"dist",
".eslintrc.js",
".prettierrc.js"
],
"sideEffects": false,
"keywords": [
"javascript",
"typescript",
"CloudQuery",
"CQ",
"plugin"
],
"license": "MPL-2.0",
"author": {
"name": "cloudquery",
"url": "https://github.com/cloudquery"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudquery/plugin-config-ui-lib.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/cloudquery/plugin-config-ui-lib/issues"
},
"homepage": "https://github.com/cloudquery/plugin-config-ui-lib#readme",
"scripts": {
"build": "npm run clean && npm run compile:types && npm run generate:api && npm run compile:js",
"analyze": "source-map-explorer 'dist/*.js'",
"compile:types": "tsc --emitDeclarationOnly --outDir lib --declarationMap --declaration",
"generate:api": "api-extractor run --local --verbose",
"compile:js": "rollup -c",
"lint": "eslint src --ext .ts,.tsx --max-warnings 0",
"lint:fix": "eslint src --ext .ts,.tsx --max-warnings 0 --fix",
"test": "jest --config config/jest.config.js",
"test:watch": "jest --config config/jest.config.js --watchAll",
"clean": "rimraf ./lib ./dist",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic"
},
"dependencies": {
"@babel/runtime": "^7.25.6",
"@cloudquery/cloud-ui": "^2.0.0-rc.0",
"@rudderstack/analytics-js": "^3.7.13",
"dayjs": "^1.11.13",
"decamelize": "^6.0.0",
"handlebars": "^4.7.8",
"humanize-string": "^3.0.0",
"inquirer": "^11.1.0",
"react-hook-form": "^7.53.0"
},
"peerDependencies": {
"@cloudquery/plugin-config-ui-connector": "^0.2.16",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^6.0.0",
"@mui/lab": "^6.0.0-beta.9",
"@mui/material": "^6.0.0",
"@mui/system": "^6.0.0",
"@mui/x-date-pickers": "^7.6.2",
"@playwright/test": "^1.47.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.25.4",
"@babel/preset-flow": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@chromatic-com/storybook": "^1.9.0",
"@cloudquery/plugin-config-ui-connector": "^0.2.16",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@microsoft/api-extractor": "^7.47.9",
"@mui/icons-material": "^6.0.0",
"@mui/lab": "^6.0.0-beta.9",
"@mui/material": "^6.0.0",
"@mui/system": "^6.0.0",
"@mui/x-date-pickers": "^7.6.2",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-essentials": "^8.3.3",
"@storybook/addon-interactions": "^8.3.3",
"@storybook/addon-links": "^8.3.3",
"@storybook/addon-onboarding": "^8.3.3",
"@storybook/blocks": "^8.3.3",
"@storybook/react": "^8.3.3",
"@storybook/react-vite": "^8.3.3",
"@storybook/test": "^8.3.3",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@types/react": "^18.3.8",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"chromatic": "^11.10.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-storybook": "^0.9.0",
"eslint-plugin-unicorn": "^55.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^5.0.7",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"source-map-explorer": "^2.5.3",
"storybook": "^8.3.3",
"typescript": "^5.6.2",
"yup": "^1.4.0"
}
}