forked from SuperTux88/k8s-info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.26 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
{
"name": "k8s-info",
"description": "k8s deployment infos",
"author": "Benjamin Neff <benjamin@coding4.coffee>",
"license": "MIT",
"private": true,
"dependencies": {
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-free-brands": "^5.0.13",
"@fortawesome/fontawesome-free-regular": "^5.0.13",
"@fortawesome/fontawesome-free-solid": "^5.0.13",
"@fortawesome/react-fontawesome": "0.0.20",
"@material-ui/core": "^1.0.0",
"@material-ui/icons": "^1.0.0",
"autosuggest-highlight": "^3.1.1",
"axios": "^0.18.0",
"axios-progress-bar": "^1.2.0",
"lodash": "^4.17.10",
"prop-types": "^15.6.1",
"query-string": "^6.1.0",
"react": "^16.4.0",
"react-autosuggest": "^9.3.4",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.3.2",
"react-isolated-scroll": "^0.1.1",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"typeface-roboto": "0.0.54",
"typeface-roboto-mono": "0.0.54"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-semistandard": "^12.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-standard": "^3.1.0",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.8.3",
"webpack-cli": "^3.0.2",
"webpack-manifest-plugin": "^2.0.3"
},
"scripts": {
"build": "webpack -p --progress --config webpack.config.js",
"dev-build": "webpack --progress -d --config webpack.config.js",
"watch": "webpack --progress -d --config webpack.config.js --watch",
"eslint": "eslint --ignore-path .gitignore --ext .js --ext .jsx ."
},
"babel": {
"presets": [
"es2015",
"react"
]
}
}