-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.7 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.7 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
{
"name": "katlas-browser",
"description": "UI tool for navigating and inspecting Kubernetes Application Topology data",
"version": "0.0.0",
"homepage": "/ui",
"private": true,
"dependencies": {
"@material-ui/core": "^3.3.1",
"@material-ui/icons": "^3.0.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"fetch-mock": "^7.2.8",
"font-awesome": "^4.7.0",
"history": "^4.7.2",
"lodash": "^4.17.13",
"node-sass": "^7.0.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-json-view": "^1.19.1",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.8",
"react-splitter-layout": "^4.0.0",
"react-test-renderer": "^16.6.3",
"redux": "^4.0.1",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"vis": "^4.21.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"babel-eslint": "9.0.0",
"prettier": "1.16.4"
},
"scripts": {
"start": "react-scripts start",
"test": "NODE_ENV=test react-scripts test",
"eject": "react-scripts eject",
"build": "react-scripts build && yarn run delete-maps",
"delete-maps": "yarn run delete-map-files && yarn run delete-references-to-map-files",
"delete-map-files": "find ./build -name '*.map' -delete",
"delete-references-to-map-files": "find ./build -regex '.*\\.\\(js\\|css\\)' -exec sed -i -E '\\/[\\*\\/]#\\ssourceMappingURL=(main|[0-9]+)(\\.[0-9a-f]+)?\\.chunk\\.(css|js)\\.map(\\*\\/)?/g' {} +"
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"singleQuote": true
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}