-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.29 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
{
"name": "react-simple-placeholder-image",
"version": "0.1.2",
"description": "A Minimal lightweight react component for adding a nice image placeholder.",
"author": {
"name": "awran5",
"email": "awran5@yahoo.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/awran5/react-simple-placeholder-image.git"
},
"bugs": {
"url": "https://github.com/awran5/react-simple-placeholder-image/issues"
},
"homepage": "https://github.com/awran5/react-simple-placeholder-image#readme",
"main": "dist/index.js",
"source": "src/index.tsx",
"engines": {
"node": ">=14"
},
"scripts": {
"clean": "rm -rf dist",
"build": "rollup -c --exports auto",
"start": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"changes": "auto-changelog -p --template keepachangelog && git add CHANGELOG.md",
"release": "build && npm publish"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-docs": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"auto-changelog": "^2.4.0",
"babel-loader": "^8.2.5",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-scripts": "^5.0.1",
"rollup": "^2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.8.4"
},
"keywords": [
"react",
"react component",
"dummy image",
"image placeholder-generator",
"image placeholder component"
],
"tags": [
"react",
"react-component",
"dummy-image",
"image-placeholder-generator",
"image-placeholder-component"
],
"files": [
"dist"
],
"dependencies": {}
}