-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
85 lines (85 loc) · 2.97 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
{
"name": "@redbackops/redback-ui",
"homepage": "https://redback-operations.github.io/redback-ui/",
"repository": {
"type": "git",
"url": "https://github.com/Redback-Operations/redback-ui"
},
"version": "0.0.3",
"type": "module",
"license": "MIT",
"exports": "./dist/index.js",
"scripts": {
"dev": "storybook dev --port 6006",
"lint": "eslint ./src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint ./src --ext ts,tsx --fix",
"lint:structure": "eslint --parser ./node_modules/eslint-plugin-project-structure/dist/parser.js --rule project-structure/file-structure:error --ext .js,.jsx,.ts,.tsx,.html,.css,.svg,.png,.jpg,.json,.md .",
"test:unit": "jest ./src/components/**/*.test.tsx --coverage",
"storybook": "storybook dev --port 6006",
"build:storybook": "storybook build",
"build": "storybook build",
"preview": "npx http-server ./storybook-static",
"package": "tsc -p tsconfig.dist.json"
},
"dependencies": {
"@storybook/addon-a11y": "^8.2.9",
"@storybook/addon-docs": "^8.2.9",
"@storybook/addons": "^7.6.17",
"@storybook/manager-api": "^8.2.9",
"@storybook/theming": "^8.2.9",
"@types/styled-components": "^5.1.34",
"lucide-react": "^0.378.0",
"polished": "^4.3.1",
"react-icons": "^5.2.1",
"react-select": "^5.8.0",
"styled-components": "^6.1.8"
},
"peerDependencies": {
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@chromatic-com/storybook": "^1.6.1",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-mdx-gfm": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@storybook/types": "^8.2.9",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/jest": "^29.5.12",
"@types/jest-axe": "^3.5.9",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"babel-jest": "^29.7.0",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^8.57.0",
"eslint-plugin-project-structure": "^1.4.7",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-storybook": "^0.8.0",
"jest": "^29.7.0",
"jest-axe": "^9.0.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-magnetic-di": "^3.1.3",
"semantic-release": "^24.1.1",
"storybook": "^8.2.9",
"storybook-dark-mode": "^4.0.2",
"typescript": "^5.2.2",
"vite": "^5.2.0"
}
}