-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.11 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
{
"name": "react-giphy",
"private": true,
"version": "1.0.0",
"description": "For the love of giphs",
"scripts": {
"copy": "copyfiles -f ./src/favicon.ico ./dist",
"build": "npm run copy && webpack --env=dist",
"start": "node server.js --env=dev",
"serve": "node server.js --env=dist",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"author": "Murtaza Nathani <mudza100@gmail.com>",
"license": "MIT",
"engines": {
"node": "^6.14.0 || ^8.10.0 || >=9.10.0"
},
"dependencies": {
"axios": "^0.18.0",
"bootstrap-sass": "^3.4.0",
"core-js": "^2.6.3",
"moment": "^2.24.0",
"react": "16.7.0",
"react-dom": "16.7.0",
"react-masonry-layout": "0.4.0",
"react-redux": "6.0.0",
"react-router": "3.2.0",
"react-router-redux": "4.0.8",
"redux": "4.0.1",
"redux-api-middleware": "3.0.1",
"redux-localstorage-simple": "^2.1.4",
"redux-thunk": "^2.3.0",
"redux-undo": "0.6.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.84.0"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bootstrap-loader": "^2.0.0-beta.15",
"copyfiles": "^2.1.0",
"css-loader": "0.28.7",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-react": "^7.12.4",
"extract-text-webpack-plugin": "3.0.1",
"file-loader": "1.1.5",
"glob": "^7.1.3",
"less": "3.9.0",
"less-loader": "4.1.0",
"minimist": "^1.2.0",
"node-sass": "^4.11.0",
"null-loader": "^0.1.1",
"open": "0.0.5",
"react-hot-loader": "^3.0.0-beta.6",
"resolve-url-loader": "^2.x.x",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "0.19.0",
"url-loader": "^1.1.2",
"webpack": "3.12.0",
"webpack-dev-server": "2.9.1"
}
}