forked from bago2k4/react-giphy-selector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.42 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
{
"name": "react-giphy-selector",
"version": "0.0.1",
"description": "A search & select React.JS component for picking the perfect giphy.",
"main": "lib/index.js",
"typings": "./index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/webpack",
"build-example": "./node_modules/.bin/webpack --config example/webpack.config.js",
"format": "./node_modules/.bin/prettier es5 --write \"{{src,example/src}/**/*.{js,ts,tsx},webpack.config.js}\"",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tshaddix/react-giphy-selector.git"
},
"author": "Tyler Shaddix <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tshaddix/react-giphy-selector/issues"
},
"homepage": "https://github.com/tshaddix/react-giphy-selector#readme",
"devDependencies": {
"@types/react-dom": "^16.0.3",
"awesome-typescript-loader": "^3.4.1",
"css-loader": "^0.28.7",
"file-loader": "^1.1.6",
"prettier": "^1.9.2",
"react-dom": "^16.2.0",
"source-map-loader": "^0.2.3",
"style-loader": "^0.19.1",
"typescript": "^2.6.2",
"url-loader": "^0.6.2",
"webpack": "^3.10.0"
},
"dependencies": {
"@types/classnames": "^2.2.3",
"@types/react": "^16.0.33",
"classnames": "^2.2.5",
"giphy-js-sdk-core": "^1.0.2",
"react": "^16.2.0"
}
}