-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.12 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
{
"name": "@codesyntax/ionic-react-photo-viewer",
"version": "1.14.0",
"description": "Ionic React photo viewer component",
"author": "bipoza",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"homepage": "http://codesyntax.github.io/ionic-react-photo-viewer",
"scripts": {
"build": "npm run clean && rollup -c",
"clean": "rimraf dist",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "npm run build-storybook && gh-pages -d storybook-static && rimraf storybook-static",
"release": "release-it"
},
"keywords": [
"ionic",
"react",
"photo",
"image",
"viewer",
"component",
"photoswipe",
"react-photoswipe-gallery"
],
"dependencies": {
"photoswipe": "^5.2.7",
"react-photoswipe-gallery": "^2.2.1"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@ionic/react": "^6.1.5",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/addons": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.11",
"@storybook/theming": "^6.4.22",
"@types/react": "^16.14.3",
"@types/react-dom": "^16.9.10",
"babel-loader": "^8.2.5",
"gh-pages": "^4.0.0",
"postcss": "^8.4.13",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"release-it": "^15.10.3",
"rimraf": "^3.0.2",
"rollup": "^2.73.0",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.6.4"
},
"peerDependencies": {
"@ionic/react": ">=6.0.0",
"react": ">=16.8.6",
"react-dom": ">=16.8.6"
},
"publishConfig": {
"access": "public"
}
}