This repository was archived by the owner on Nov 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.42 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
{
"name": "memes",
"version": "1.1.0",
"description": "The hottest memes of internet",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --env.dev --config ./tools/webpack",
"build": "npm run build:clear && webpack --env.prod --progress --config ./tools/webpack",
"build:clear": "node ./node_modules/rimraf/bin.js ./dist",
"deploy": "npm run build && cross-env TOOL=deploy node ./tools"
},
"keywords": [
"react",
"memes"
],
"author": "Filipsi",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"axios": "^0.19.0",
"bulma": "^0.7.5",
"lodash": "^4.17.14",
"moment": "^2.24.0",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"query-string": "^6.8.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-headroom": "^2.2.8",
"react-helmet": "^5.2.1",
"react-lazyload": "^2.6.2",
"react-moment": "^0.7.9",
"react-redux": "^5.1.1",
"react-scroll-up": "^1.3.3",
"react-spinners": "^0.5.12",
"redux": "^4.0.4",
"redux-persist": "^5.10.0",
"redux-persist-transform-filter": "0.0.18",
"redux-promise-middleware": "^5.1.1",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.0",
"babel-minify-webpack-plugin": "^0.3.1",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"dotenv": "^8.0.0",
"eslint": "^4.19.1",
"eslint-config-happiness": "^10.2.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-standard": "^3.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"ftp-deploy": "^2.3.3",
"html-webpack-plugin": "^3.2.0",
"raw-loader": "^3.0.0",
"rimraf": "^2.6.3",
"style-loader": "^0.21.0",
"svg-transform-loader": "^1.2.1",
"svg-url-loader": "^2.3.3",
"url-loader": "^1.1.2",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
}
}