-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
93 lines (93 loc) · 2.63 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
{
"name": "functional-ui-kit",
"version": "1.0.3",
"description": "Functional UI Kit",
"homepage": "https://functional-ui-kit.com/",
"scripts": {
"build": "vite build --config vite.config.ts",
"dev": "npm run storybook",
"lint": "eslint ./src --fix",
"precommit": "lint-staged",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"build-storybook": "npm run storybook:build",
"storybook:deploy": "npx chromatic --exit-once-uploaded --project-token=chpt_74ebca5d2886a87"
},
"files": [
"dist",
"fui-badge",
"fui-button",
"fui-popover",
"fui-checkbox",
"fui-empty",
"fui-modal",
"fui-notification",
"fui-radio",
"fui-select",
"fui-switch",
"fui-status-message",
"fui-option-group",
"fui-stepper",
"fui-text-input",
"fui-toggle",
"fui-tooltip",
"style"
],
"author": "Alex Yakir",
"repository": {
"type": "git",
"url": "https://github.com/functional-ui/functional-ui-kit.git"
},
"license": "ISC",
"dependencies": {
"@floating-ui/react": "^0.25.2",
"classnames": "^2.3.2",
"react-modal": "^3.16.1"
},
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@storybook/addon-designs": "^7.0.7",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-mdx-gfm": "^7.6.17",
"@storybook/addon-toolbars": "^7.6.17",
"@storybook/blocks": "^7.6.17",
"@storybook/manager-api": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-webpack5": "^7.6.17",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^7.6.17",
"@types/react": "^18.0.0",
"@types/react-modal": "^3.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"chromatic": "^6.19.9",
"eslint": "^8.40.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.6.17",
"storybook-dark-mode": "^3.0.3",
"typescript": "^5.0.4",
"vite": "^4.4.4",
"vite-plugin-dts": "^3.3.1"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"lint-staged": {
"src/**/*.ts": "eslint --fix"
}
}