-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.49 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
{
"name": "@wethegit/components",
"version": "3.0.2",
"main": "./src/index.ts",
"sideEffects": false,
"license": "MIT",
"files": [
"./src/**/*",
"./src/**/!(*.stories.*)",
"./src/**/!(.storybook)"
],
"exports": {
"./components/*": "./src/components/*",
"./hooks/*": "./src/hooks/*",
"./utilities/*": "./src/utilities/*",
"./types/*": "./src/types/*",
"./styles/*": "./src/styles/*",
".": "./src/index.ts"
},
"scripts": {
"build": "storybook build --docs",
"clean": "rm -rf ./.turbo ./node_modules ./dist ./storybook-static",
"start": "storybook dev -p 6006",
"lint": "eslint src/",
"stylelint": "stylelint **/*.{css,scss}",
"preview-storybook": "http-server storybook-static --port 6006 --silent",
"test-storybook": "test-storybook",
"test-storybook:ci": "npx concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npm run preview-storybook\" \"npx wait-on tcp:6006 && npm run test-storybook\"",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@wethegit/react-hooks": "^3.0.1",
"@wethegit/react-modal": "^3.0.0",
"react": "17 - 19",
"react-dom": "17 - 19",
"typescript": "^5.2.2"
},
"devDependencies": {
"@storybook/addon-a11y": "^8.4.5",
"@storybook/addon-actions": "^8.1.10",
"@storybook/addon-docs": "^8.1.5",
"@storybook/addon-essentials": "^8.5.8",
"@storybook/addon-interactions": "^8.5.8",
"@storybook/addon-links": "^8.1.11",
"@storybook/addon-themes": "^8.1.5",
"@storybook/blocks": "^8.5.8",
"@storybook/manager-api": "^8.1.11",
"@storybook/react": "^8.4.5",
"@storybook/react-vite": "^8.4.5",
"@storybook/test": "^8.4.5",
"@storybook/test-runner": "^0.24.2",
"@storybook/theming": "^8.1.11",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"@wethegit/react-hooks": "^3.0.1",
"@wethegit/react-modal": "^3.0.0",
"eslint": "^8.57.1",
"eslint-config-custom": "*",
"eslint-plugin-storybook": "^0.11.1",
"http-server": "^14.1.1",
"lint-staged-config": "*",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"remark-gfm": "^4.0.0",
"sass": "^1.81.0",
"storybook": "^8.5.8",
"stylelint": "^16.8.0",
"stylelint-config-custom": "*",
"tsconfig": "*",
"typescript": "^5.2.2",
"vite": "^5.4.11",
"wait-on": "^8.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@storybook/addon-interactions": "8.6.14"
}
}