-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.78 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.78 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
{
"name": "react-k8s",
"version": "0.1.0",
"description": "React Kubernetes Components",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"author": "Ernesto Freyre",
"license": "MIT",
"files": [
"build"
],
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@storybook/addon-viewport": "^5.2.8",
"@storybook/preset-typescript": "^1.1.0",
"@storybook/react": "^5.2.8",
"@types/jest": "^24.0.23",
"@types/react": "^16.9.14",
"@types/react-dom": "^16.9.4",
"@types/react-test-renderer": "^16.9.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"fela-plugin-typescript": "^11.0.2",
"jest": "^24.9.0",
"prettier-standard": "^16.1.0",
"react": "^16.12.0",
"react-docgen-typescript-loader": "^3.6.0",
"react-dom": "^16.12.0",
"react-fela": "^11.0.2",
"react-scripts-ts": "^3.1.0",
"react-test-renderer": "^16.12.0",
"rollup": "^1.27.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.25.2",
"standard": "^14.3.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2"
},
"scripts": {
"build": "rollup -c",
"test": "jest",
"lint": "standard",
"format": "prettier-standard --format",
"storybook": "start-storybook"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"standard": {
"ignore": [
"/build/"
]
},
"dependencies": {
"@kubernetes/client-node": "^0.11.0",
"@types/ramda": "^0.26.37",
"js-file-download": "^0.4.9",
"js-yaml": "^3.13.1",
"ramda": "^0.26.1"
}
}