-
Notifications
You must be signed in to change notification settings - Fork 209
/
package.json
90 lines (90 loc) · 2.55 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
82
83
84
85
86
87
88
89
90
{
"name": "react-grid-gallery",
"version": "1.0.1",
"description": "Justified gallery component for React.",
"types": "dist/react-grid-gallery.d.ts",
"main": "dist/react-grid-gallery.cjs.js",
"module": "dist/react-grid-gallery.esm.js",
"browser": "dist/react-grid-gallery.umd.js",
"files": [
"dist",
"src"
],
"exports": {
"types": "./dist/react-grid-gallery.d.ts",
"browser": "./dist/react-grid-gallery.umd.js",
"import": "./dist/react-grid-gallery.esm.js",
"require": "./dist/react-grid-gallery.cjs.js"
},
"sideEffects": false,
"scripts": {
"prepublishOnly": "npm run build",
"clean": "rimraf dist && rimraf node_modules/.cache",
"rollup:build": "rollup -c",
"watch": "rollup -c -w",
"build": "npm run clean && npm run rollup:build",
"test": "jest",
"test:unit": "jest --testPathIgnorePatterns=\\.e2e\\.test\\.js",
"test:e2e": "jest --testPathPattern=\\.e2e\\.test\\.js"
},
"peerDependencies": {
"react": ">=16.14.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/jest-environment-puppeteer": "^5.0.6",
"@types/jest-image-snapshot": "^6.4.0",
"@types/react": "^18.2.28",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-image-snapshot": "^6.4.0",
"jest-puppeteer": "^10.0.1",
"puppeteer": "^21.3.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^4.8.2"
},
"repository": {
"type": "git",
"url": "https://github.com/benhowell/react-grid-gallery.git"
},
"keywords": [
"react",
"react-component",
"image",
"images",
"photo",
"photos",
"gallery",
"select",
"selectable",
"justified",
"tags",
"tagging",
"EXIF",
"image gallery",
"photo gallery"
],
"author": "Ben Howell",
"license": "MIT",
"bugs": {
"url": "https://github.com/benhowell/react-grid-gallery/issues"
},
"homepage": "https://benhowell.github.io/react-grid-gallery/"
}