This repository has been archived by the owner on Jul 10, 2023. It is now read-only.
forked from nickmcmillan/react-pig
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.95 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
{
"name": "librephotos-react-pig",
"version": "1.0.0",
"description": "Arrange images in a responsive, progressive-loading grid managed in JavaScript using CSS transforms.",
"author": "derneuere",
"license": "MIT",
"repository": "librephotos/react-pig",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "yarn run build",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.8.1",
"react-dom": "^16.8.1"
},
"dependencies": {
"es-abstract": "1.18.3",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"react-spring": "^9.2.3"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/plugin-external-helpers": "^7.14.5",
"@babel/plugin-proposal-function-bind": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-url": "^6.0.0",
"@svgr/rollup": "^5.5.0",
"babel-eslint": "^8.2.5",
"cross-env": "^7.0.3",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"gh-pages": "^3.2.0",
"postcss": "^8.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"rollup": "^2.51.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0"
},
"files": [
"dist"
]
}