-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.83 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
{
"name": "zfe-files",
"version": "1.3.4",
"type": "module",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
},
"./dist/index.css": "./dist/index.css"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"export": "npm run build && npm --no-git-tag-version version patch && npm publish",
"lint": "eslint .",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": "18-19",
"react-cropper": "^2.3.3",
"react-dropzone": "^14.3.5",
"react-modal": "^3.16.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.6",
"@eslint/js": "^9.19.0",
"@storybook/addon-essentials": "^8.6.6",
"@storybook/addon-interactions": "^8.6.6",
"@storybook/addon-onboarding": "^8.6.6",
"@storybook/blocks": "^8.6.6",
"@storybook/react": "^8.6.6",
"@storybook/react-vite": "^8.6.6",
"@storybook/test": "^8.6.6",
"@types/cropperjs": "^1.1.5",
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/react-modal": "^3.16.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react-swc": "^3.5.0",
"bootstrap": "^5.3.3",
"classnames": "^2.5.1",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.18",
"eslint-plugin-storybook": "^0.11.4",
"globals": "^15.14.0",
"rollup-preserve-directives": "^1.1.3",
"sass": "^1.85.1",
"storybook": "^8.6.6",
"typescript": "~5.7.2",
"typescript-eslint": "^8.22.0",
"vite": "^6.2.2",
"vite-plugin-dts": "^4.5.0"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}