forked from tshaddix/react-giphy-selector
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.79 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
{
"name": "@bago2k4/react-giphy-selector",
"version": "0.0.7",
"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",
"start": "webpack-cli serve --open --config webpack.dev.js",
"build": "npx webpack-cli --config webpack.prod.js",
"build-example": "webpack-cli --config example/webpack.config.js",
"start-example": "webpack-cli serve --open --config example/webpack.config.js",
"format": "npx prettier es5 --write \"{{src,example/src}/**/*.{js,ts,tsx},webpack.prod.js}\"",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bago2k4/react-giphy-selector.git"
},
"author": "Iacopo Carraro <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bago2k4/react-giphy-selector/issues"
},
"homepage": "https://github.com/bago2k4/react-giphy-selector#readme",
"devDependencies": {
"@types/node": "^11.15.53",
"@types/react-dom": "^16.0.3",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^0.28.11",
"csv-loader": "^2.1.1",
"express": "^4.15.3",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^5.3.1",
"prettier": "^1.9.2",
"react-dom": "^16.2.0",
"source-map-loader": "^0.2.3",
"style-loader": "^0.19.1",
"typescript": "^3.9.9",
"url-loader": "^0.6.2",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^4.1.0",
"xml-loader": "^1.2.1"
},
"dependencies": {
"@types/react": "^16.14.6",
"giphy-js-sdk-core": "^1.0.6",
"node-fetch": "^2.6.1",
"react": "^16.2.0"
}
}