-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
80 lines (80 loc) · 2.57 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
{
"name": "react-media-library",
"version": "2.0.3",
"description": "React Media Library is a UI package similar to the WordPress media library, but for React. It features file drag-and-drop as well as a library to select previously uploaded files.",
"homepage": "https://github.com/Richard1320/React-Media-Library",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "jest",
"build": "rm -rf ./dist && rollup -c --bundleConfigAsCjs",
"prepublishOnly": "npm run build",
"deploy-storybook": "npm run build-storybook && gh-pages -d storybook-static",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "[email protected]:Richard1320/React-Media-Library.git"
},
"keywords": [
"react",
"reactjs",
"react-dom",
"drag-and-drop",
"filemanager",
"file-manager",
"file-manager-ui"
],
"author": "Richard Hung <[email protected]> (https://www.magicmediamuse.com)",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@storybook/addon-essentials": "7.5.2",
"@storybook/addon-interactions": "7.5.2",
"@storybook/addon-links": "7.5.2",
"@storybook/blocks": "7.5.2",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "7.5.2",
"@storybook/react-webpack5": "7.5.2",
"@storybook/testing-library": "0.2.2",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.7",
"@types/react": "^18.2.34",
"@types/styled-components": "^5.1.29",
"css-loader": "^6.8.1",
"gh-pages": "^6.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-sass": "^9.0.0",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "18.2.0",
"rollup": "^4.3.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"sass-loader": "^13.3.2",
"storybook": "7.5.2",
"style-loader": "^3.3.3",
"typescript": "^5.2.2"
},
"dependencies": {
"react-dropzone": "^14.2.3"
},
"peerDependencies": {
"react": ">= 16.X.X",
"react-dom": ">= 16.X.X"
},
"bugs": {
"url": "https://github.com/Richard1320/React-Media-Library/issues",
"email": "[email protected]"
}
}