This repository has been archived by the owner on May 1, 2020. It is now read-only.
forked from AlithAnar/react-giphy-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.77 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
91
92
93
94
95
{
"name": "@guaclive/react-giphy-select",
"version": "1.0.6",
"description": "A React component for select GIFs on GIPHY.",
"main": "lib/index.js",
"scripts": {
"build": "yarn run build:clean && yarn run build:lib",
"build:lib": "babel src -d lib --ignore test.js",
"build:clean": "rimraf lib",
"lint": "eslint ./",
"version": "yarn run build",
"start": "webpack-dev-server",
"test": "jest --verbose",
"test:watch": "jest --verbose --watch",
"build-docs": "rimraf docs-dist && NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GuacLive/react-giphy-select.git"
},
"keywords": [
"react",
"giphy",
"gif"
],
"author": "bashkos <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GuacLive/react-giphy-select/issues"
},
"homepage": "https://github.com/GuacLive/react-giphy-select#readme",
"devDependencies": {
"@babel/cli": "",
"@babel/core": "",
"@babel/preset-env": "",
"@babel/preset-react": "",
"babel-eslint": "^11.0.0-beta.0",
"babel-plugin-css-modules-transform": "^1.2.7",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"enzyme": "^3.10.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^6.0.0-alpha.2",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"jest": "^24.8.0",
"jest-fetch-mock": "^2.1.2",
"postcss-loader": "^3.0.0",
"react": "^16.9.0-alpha.0",
"react-dom": "^16.9.0-alpha.0",
"react-hot-loader": "^4.10.0",
"react-inspector": "^3.0.2",
"react-syntax-highlighter": "^10.3.0",
"react-test-renderer": "^16.9.0-alpha.0",
"rimraf": "^2.6.1",
"style-loader": "^0.23.1",
"webpack": "^4",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.7.1",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"autoprefixer": "^9.6.0",
"babel-loader": "^8.0.6",
"core-js": "^3.1.3",
"isomorphic-fetch": "^2.2.1",
"prop-types": "^15.5.8",
"react-custom-scrollbars": "^4.1.1",
"react-masonry-component": "git+https://github.com/activitree/react-masonry-component.git"
},
"peerDependencies": {
"react": "^16.9.0-alpha.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"Firefox ESR"
],
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
]
}
}