-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 3.05 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
{
"name": "@reportportal/ui-kit",
"version": "0.0.1-alpha.40",
"description": "The UI-kit library for ReportPortal Design System.",
"type": "module",
"scripts": {
"start": "storybook dev -p 6006",
"build": "tsc && vite build",
"build:storybook": "storybook build",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"format": "npm run lint -- --fix",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run",
"test:ui": "vitest --ui",
"prepare": "husky install"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/components/index.d.ts",
"peerDependencies": {
"react": "17.x-18.x",
"react-dom": "17.x-18.x"
},
"dependencies": {
"@floating-ui/react": "^0.26.16",
"@floating-ui/react-dom": "^2.0.1",
"classnames": "^2.3.2",
"downshift": "^6.1.12",
"framer-motion": "^10.15.2",
"rc-scrollbars": "^1.1.6",
"react-datepicker": "^7.3.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.4.5",
"@types/react": "^18.3.3",
"@types/react-datepicker": "^6.2.0",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.0.3",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"date-fns": "^3.6.0",
"eslint": "^8.46.0",
"eslint-config-airbnb-typescript": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^8.0.3",
"jsdom": "^25.0.1",
"lint-staged": "^13.2.3",
"prettier": "^3.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.64.1",
"storybook": "^8.2.9",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.4.0",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reportportal/ui-kit.git"
},
"author": "ReportPortal.io",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/reportportal/ui-kit/issues"
},
"homepage": "https://github.com/reportportal/ui-kit#readme",
"keywords": [
"react",
"react-components",
"design-systems",
"ui-kit",
"reportportal",
"epam"
],
"engines": {
"node": ">=16.x"
}
}