forked from kubeflow/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.47 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
85
86
87
88
89
90
{
"name": "@kubeflow/frontend",
"version": "0.1.0",
"description": "Shared libraries and components used by Kubeflow frontend projects.",
"private": true,
"main": "build/lib/index.js",
"dependencies": {
"@material-ui/core": "^3.7.1",
"@material-ui/icons": "^3.0.1",
"@types/lodash.groupby": "^4.6.6",
"google-protobuf": "^3.11.2",
"grpc-web": "^1.0.7",
"lodash.debounce": "^4.0.8",
"lodash.flatten": "^4.4.0",
"lodash.groupby": "^4.6.0",
"lodash.isfunction": "^3.0.9",
"react-svg-line-chart": "^2.0.2"
},
"scripts": {
"build": "npx tsc --project tsconfig.lib.json",
"build:all": "npm run build:protos && npx tsc --project tsconfig.lib.json",
"build:protos": "node scripts/gen_grpc_web_protos.js",
"build:watch": "npx tsc --project tsconfig.lib.json --watch",
"eject": "cross-env EXTEND_ESLINT=true react-scripts eject",
"test": "cross-env TZ='America/New_York' EXTEND_ESLINT=true react-scripts test --env=jsdom",
"test:coverage": "npm test -- --coverage --watchAll=false"
},
"eslintConfig": {
"extends": "react-app"
},
"eslintIgnore": [
"src/__mocks__",
"src/mlmd/generated"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"homepage": "./",
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!<rootDir>/node_modules/"
],
"coverageReporters": [
"text",
"lcov"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"proxy": "http://localhost:8080",
"devDependencies": {
"@types/enzyme": "^3.9.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/express": "^4.16.0",
"@types/google-protobuf": "^3.7.2",
"@types/jest": "^24.0.25",
"@types/node": "^12.0.2",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"@types/react-router-dom": "^4.3.1",
"cross-env": "^6.0.3",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^4.3.1",
"react-scripts": "^3.3.1",
"typescript": "^3.7.4",
"typestyle": "^2.0.4"
},
"peerDependencies": {
"typescript": "^3.7.4",
"react-router-dom": "^4.3.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"typestyle": "^2.0.4"
}
}