-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.82 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
80
81
82
83
84
85
86
87
88
89
{
"name": "streamjokes",
"version": "2.1.0",
"main": "index.js",
"repository": "https://[email protected]/zdend/streamjokes.git",
"author": "Zdenek Vecek <[email protected]>",
"private": true,
"license": "LicenseRef-LICENCE",
"scripts": {
"serve": "npx http-server ./dist",
"dev": "npx webpack-dev-server --watch --hot --mode development",
"prod": "NODE_ENV=production webpack --mode production",
"prod-dev": "yarn prod && yarn serve",
"generate": "npx babel-node -e 'require(\"./generator/index.js\").default()'",
"all-prod": "yarn generate && yarn prod"
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.6.0",
"bootstrap": "4.1.3",
"capitalize": "2.0.0",
"classnames": "2.2.6",
"del": "3.0.0",
"hammerjs": "2.0.8",
"history": "4.7.2",
"jquery": "3.3.1",
"popper.js": "1.14.4",
"qs": "6.5.2",
"react": "16.8.0-alpha.1",
"react-dom": "16.8.0-alpha.1",
"react-helmet": "5.2.0",
"react-redux": "5.1.1",
"react-router": "4.3.1",
"react-router-dom": "4.3.1",
"react-router-redux": "5.0.0-alpha.9",
"react-share": "2.3.1",
"reactstrap": "6.5.0",
"recompose": "0.30.0",
"redux": "4.0.1",
"redux-persist": "5.10.0",
"redux-saga": "1.0.0",
"reduxsauce": "1.0.0",
"reselect": "4.0.0"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/node": "7.0.0",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.0.0",
"@babel/plugin-proposal-optional-chaining": "7.0.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "7.1.5",
"autoprefixer": "9.3.1",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"babel-plugin-dynamic-import-node": "2.2.0",
"copy-webpack-plugin": "4.6.0",
"css-loader": "1.0.1",
"eslint": "5.9.0",
"eslint-plugin-babel": "5.2.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-react": "7.11.1",
"file-loader": "2.0.0",
"html-loader": "0.5.5",
"html-minifier": "3.5.21",
"http-server": "0.11.1",
"make-dir": "1.3.0",
"mini-css-extract-plugin": "0.4.4",
"node-sass": "4.10.0",
"optimize-css-assets-webpack-plugin": "5.0.1",
"postcss-loader": "3.0.0",
"react-hot-loader": "4.3.12",
"redux-devtools-extension": "2.13.5",
"sass-loader": "7.1.0",
"shortid": "2.2.14",
"string-similarity": "2.0.0",
"style-loader": "0.23.1",
"terser-webpack-plugin": "1.1.0",
"url-loader": "1.1.2",
"webpack": "4.24.0",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.10",
"workbox-webpack-plugin": "3.6.3"
}
}