-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
135 lines (135 loc) · 4.55 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
{
"name": "@ebay/ui-core-react",
"version": "8.0.4",
"description": "Skin components build off React",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"directory": "dist"
},
"exports": {
"./package.json": "./package.json",
"./*": {
"types": "./*/index.d.ts",
"default": "./*/index.js"
}
},
"scripts": {
"clean": "node scripts/clean",
"lint": "eslint . --ext ts,tsx",
"lint:ci": "eslint . --ext .ts,.tsx -f @microsoft/eslint-formatter-sarif -o eslint-results.sarif",
"coverage": "yarn clean && yarn test --coverage --ci",
"change": "changeset add",
"eslint-local": "eslint . --ext ts,tsx",
"eslint": "eslint . --ext .ts,.tsx -f checkstyle -o ./lint/checkstyle-result.xml",
"format": "eslint . --fix 'src/**/*.{ts,tsx}'",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider storybook dev -p 9001 -c .storybook",
"storybook-node16": "storybook dev -p 9001 -c .storybook",
"build-storybook": "storybook build",
"storybook:publish": "NODE_OPTIONS=--openssl-legacy-provider yarn build-storybook --output-dir storybook-static/$(git branch --show-current) && gh-pages --add --message=\"Deploying to gh-pages from @ eBay/ebayui-core-react@$(git rev-parse --short HEAD) 🚀\" -d storybook-static",
"test": "yarn jest",
"build": "yarn type:check && vite build",
"type:check": "tsc --noEmit",
"update-icons": "node ./scripts/update-icons",
"copy": "copyfiles package.json README.md dist; yarn copy:rest",
"copy:rest": "yarn copyfiles -u 1 'src/**/*.md' dist",
"release": "yarn clean && yarn build && yarn copy && CI=1 changeset publish",
"prepare": "node scripts/husky-install || node ../scripts/husky-install",
"version": "yarn update-icons && git add -A src && changeset version"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git@github.com:eBay/ebayui-core-react.git"
},
"keywords": [
"React",
"Skin",
"EbayUI"
],
"author": "tmanyanov@ebay.com",
"license": "ISC",
"peerDependencies": {
"@ebay/skin": "^19.0.0",
"react": ">= 16.0.0",
"react-dom": ">= 16.0.0"
},
"optionalDependencies": {
"shaka-player": "^4.3.2"
},
"dependencies": {
"@floating-ui/react": "^0.27.3",
"classnames": "^2.2.6",
"makeup-active-descendant": "^0.7.4",
"makeup-expander": "^0.10.1",
"makeup-keyboard-trap": "^0.4.1",
"makeup-screenreader-trap": "^0.4.1",
"makeup-typeahead": "^0.3.3",
"react-remove-scroll": "^2.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@babel/register": "^7.0.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@ebay/skin": "^19",
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-a11y": "^7.6.12",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-storysource": "^7.6.12",
"@storybook/react": "^7.6.12",
"@storybook/react-vite": "^7.6.12",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.2.2",
"@testing-library/react-hooks": "^7",
"@testing-library/user-event": "^14",
"@types/classnames": "^2.2.11",
"@types/jest": "^29.5.12",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.10.0",
"babel-loader": "^8.1.0",
"copyfiles": "^2.2.0",
"css-loader": "^5.0.1",
"del": "^5.1.0",
"eslint": "^7.15.0",
"eslint-config-ebay": "^0.1.5",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"gh-pages": "^6.1.1",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-pnp-resolver": "^1.2.3",
"lint-staged": "^10.5.3",
"node-require-context": "^1.0.0",
"react": "^18",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^18",
"rollup-plugin-node-externals": "^7.1.3",
"shaka-player": "^4.3.2",
"storybook": "^7.5.1",
"style-loader": "^2.0.0",
"svgson": "^4.0.0",
"ts-jest": "^29.1.1",
"ts-loader": "^8.0.7",
"typescript": "4",
"vite": "^5.4.7",
"vite-plugin-cjs-interop": "^2.1.6"
},
"resolutions": {
"@storybook/addon-actions": "~7.5.3",
"string-width": "4.2.3"
}
}