-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "react-products-gallery",
"version": "1.0.5",
"description": "A mobile-responsive products gallery component",
"author": "Nicholas Song",
"license": "ISC",
"files": [
"dist"
],
"main": "dist/index.esm.js",
"source": "src/index.js",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.0",
"@mui/material": "^5.8.0",
"@rollup/plugin-babel": "^5.2.0",
"lodash": "^4.17.21",
"react-resize-detector-enhanced": "^7.0.2",
"npm-run-all": "^4.1.5",
"rollup": "^2.26.4",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-styles": "^4.0.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.0",
"@mui/material": "^5.8.0",
"lodash": ">=4.17.21",
"react-resize-detector-enhanced": ">=7.0.2"
},
"keywords": [
"product",
"gallery"
]
}