-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·104 lines (104 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·104 lines (104 loc) · 3.34 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@kurpachsv/react-gallery",
"version": "0.2.41",
"description": "A simple, fast and flexible image gallery.",
"main": "dist/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production ./node_modules/.bin/rollup -c",
"lint": "./node_modules/.bin/eslint -c ./.eslintrc.json ./src",
"eslint-check": "./node_modules/.bin/eslint --print-config ./.eslintrc.json",
"test": "./node_modules/.bin/jest --config ./jest.config.js",
"test:watch": "./node_modules/.bin/jest --config ./jest.config.js --watch",
"coveralls": "./node_modules/.bin/jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"prepare": "rimraf ./dist && npm run build"
},
"author": "Sergei Kurpach <kurpachsv@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/kurpachsv/react-gallery",
"repository": {
"type": "git",
"url": "https://github.com/kurpachsv/react-gallery.git"
},
"bugs": {
"url": "https://github.com/kurpachsv/react-gallery/issues"
},
"dependencies": {
"@researchgate/react-intersection-observer": "^0.7.4",
"fast-deep-equal": "^2.0.1",
"intersection-observer": "^0.5.1"
},
"peerDependencies": {
"react": "^16.6.0",
"react-dom": "^16.6.0",
"prop-types": "^15.6.2",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"@storybook/storybook-deployer": "^2.8.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-styled-components": "^1.10.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"html-loader": "^0.5.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"rimraf": "^2.6.3",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-replace": "^2.1.0",
"style-loader": "^0.22.1",
"styled-components": "^4.3.2",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"keywords": [
"react",
"component",
"images",
"masonry",
"gallery",
"grid",
"react images",
"react masonry",
"react gallery",
"react grid",
"react grid gallery"
],
"storybook-deployer": {
"gitUsername": "kurpachsv",
"gitEmail": "kurpachsv@gmail.com",
"commitMessage": "Deploy Storybook to GitHub Pages"
}
}