-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
193 lines (193 loc) · 7.3 KB
/
package.json
File metadata and controls
193 lines (193 loc) · 7.3 KB
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
{
"name": "spectrum-charts-monorepo",
"version": "1.42.0",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Declarative library for composing Spectrum visualizations in React.",
"browser": "./dist/index.js",
"module": "./dist/index.js",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/@types/index.d.ts",
"default": "./dist/index.js"
},
"./alpha": {
"import": "./dist/alpha.js",
"types": "./dist/@types/alpha/index.d.ts",
"default": "./dist/alpha.js"
},
"./beta": {
"import": "./dist/beta.js",
"types": "./dist/@types/beta/index.d.ts",
"default": "./dist/beta.js"
},
"./rc": {
"import": "./dist/rc.js",
"types": "./dist/@types/rc/index.d.ts",
"default": "./dist/rc.js"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/@types/index.d.ts"
],
"alpha": [
"./dist/@types/alpha/index.d.ts"
],
"beta": [
"./dist/@types/beta/index.d.ts"
],
"rc": [
"./dist/@types/rc/index.d.ts"
]
}
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/adobe/react-spectrum-charts"
},
"author": "marshall.w.peterson@gmail.com",
"license": "Apache-2.0",
"scripts": {
"build": "yarn workspaces run build",
"build:parallel": "concurrently 'yarn workspace @spectrum-charts/themes build' 'yarn workspace @spectrum-charts/constants build' 'yarn workspace @spectrum-charts/utils build' 'yarn workspace @spectrum-charts/locales build' && yarn workspace @spectrum-charts/vega-spec-builder build && concurrently 'yarn workspace @adobe/react-spectrum-charts build' 'yarn workspace @spectrum-charts/mcp build'",
"build:s2": "concurrently 'yarn workspace @spectrum-charts/themes build' 'yarn workspace @spectrum-charts/constants build' 'yarn workspace @spectrum-charts/utils build' 'yarn workspace @spectrum-charts/locales build' && yarn workspace @spectrum-charts/vega-spec-builder-s2 build:s2 && yarn workspace @spectrum-charts/react-spectrum-charts-s2 build:s2",
"build:docs": "yarn workspace @spectrum-charts/docs build",
"build:docs:s2": "yarn workspace @spectrum-charts/docs-s2 build",
"start:docs:s2": "yarn workspace @spectrum-charts/docs-s2 start",
"docs:update-cursor-rule": "node scripts/createCursorRule.js",
"clean": "yarn workspaces run clean",
"clean:parallel": "concurrently 'yarn workspace @spectrum-charts/themes clean' 'yarn workspace @spectrum-charts/constants clean' 'yarn workspace @spectrum-charts/utils clean' 'yarn workspace @spectrum-charts/locales clean' 'yarn workspace @spectrum-charts/vega-spec-builder clean' 'yarn workspace @adobe/react-spectrum-charts clean'",
"build:force": "yarn clean && yarn build",
"build:force:parallel": "yarn clean:parallel && yarn build:parallel",
"build:storybook": "storybook build -o ./dist-storybook --quiet",
"copyrights": "node ./scripts/addHeaders.js",
"generate:package": "plop package",
"lint": "eslint packages --ext .ts,.tsx,.js,.jsx",
"ts": "yarn tsc",
"tsc": "tsc --noEmit --skipLibCheck",
"pack-test": "yarn workspaces run pack-test",
"pack": "yarn workspaces run pack",
"link:all": "./scripts/linkAll.sh",
"unlink:all": "./scripts/unlinkAll.sh",
"sonar": "node ./scripts/runSonarOnBranch.js",
"sonar-fork-pr": "node ./scripts/runSonarOnFork.js",
"start": "yarn storybook",
"start:docs": "yarn workspace @spectrum-charts/docs start",
"storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider && storybook dev -p 6009",
"storybook:s2": "cross-env NODE_OPTIONS=--openssl-legacy-provider && storybook dev -p 6010 --config-dir .storybook-s2",
"build:storybook:s2": "storybook build --config-dir .storybook-s2 -o ./dist-storybook-s2 --quiet",
"test": "cross-env TZ=UTC BABEL_ENV=test jest",
"watch": "cross-env TZ=UTC BABEL_ENV=test jest --watch",
"skulk": "yarn watch --silent",
"version:s2": "node ./scripts/updateS2Versions.js",
"publish:s2": "yarn workspace @spectrum-charts/vega-spec-builder-s2 publish-package && yarn workspace @spectrum-charts/react-spectrum-charts-s2 publish-package"
},
"devDependencies": {
"@adobe/react-spectrum": "3.34.1",
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.6",
"@modelcontextprotocol/sdk": "^1.24.3",
"@storybook/addon-actions": "^8.4.1",
"@storybook/addon-essentials": "^8.4.1",
"@storybook/addon-links": "^8.4.1",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^8.4.1",
"@storybook/react-webpack5": "^8.4.1",
"@storybook/test": "^8.4.1",
"@storybook/theming": "^8.4.1",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/d3-format": "^3.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.8.2",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"axios": "^1.7.7",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.0",
"babel-plugin-module-resolver": "^5.0.2",
"chalk": "4.1.2",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.0.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"eslint": "^8.29.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"glob": "^10.4.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"pixelmatch": "^7.1.0",
"playwright": "^1.59.1",
"plop": "^4.0.1",
"pngjs": "^7.0.0",
"prettier": "2.8.8",
"react": "^18.3.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^18.3.1",
"resize-observer-polyfill": "^1.5.1",
"storybook": "^8.4.1",
"storybook-addon-react-docgen": "^1.2.44",
"storybook-dark-mode": "^4.0.1",
"style-loader": "^4.0.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^5.4.5",
"vega": "^6.2.0",
"vega-lite": "^6.4.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-node-externals": "^3.0.0"
},
"resolutions": {
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"jackspeak": "2.1.1"
},
"bugs": {
"url": "https://github.com/adobe/react-spectrum-charts/issues"
},
"homepage": "https://github.com/adobe/react-spectrum-charts#readme",
"keywords": [
"Adobe",
"AdobeAnalytics",
"Analytics",
"Data",
"Viz",
"React",
"Spectrum",
"Charts"
]
}