-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.17 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
75
76
77
78
79
80
81
82
83
84
{
"name": "SunnyBox",
"version": "1.0.0",
"description": "Sunny-box is a next-generation of online radio",
"main": "index.js",
"browserslist": [
"> 1%",
"ie >= 11"
],
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"browsers": [
"> 1%",
"ie >= 11",
"not op_mini all"
]
}
}
],
"@babel/react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-syntax-dynamic-import",
"@babel/transform-runtime"
]
},
"scripts": {
"start": "webpack-dev-server",
"build": "cross-env NODE_ENV=production webpack",
"deploy": "firebase deploy"
},
"author": "Sakal",
"license": "MIT",
"peerDependencies": {
"webpack": "^2.0.0 || ^3.0.0"
},
"dependencies": {
"@material-ui/core": "^1.4.0",
"@material-ui/icons": "^1.1.0",
"autosuggest-highlight": "^3.1.1",
"axios": "^0.18.0",
"firebase": "^5.0.4",
"react": "^16.4.0",
"react-autosuggest": "^9.3.4",
"react-dom": "^16.4.0",
"react-loadable": "^5.5.0",
"react-motion": "^0.5.2",
"react-redux": "^5.0.6",
"react-router-dom": "^4.3.1",
"react-simple-maps": "^0.12.1",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^5.1.1",
"redux-thunk": "^2.2.0",
"styled-components": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.0",
"clean-webpack-plugin": "^0.1.16",
"cross-env": "^5.0.5",
"extract-text-webpack-plugin": "^3.0.0",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^1.1.11",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^4.2.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1",
"webpack-pwa-manifest": "^3.6.2"
}
}