-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.55 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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@glebiller/flux-lens-extension",
"publisher": "glebiller.github.io",
"version": "0.1.0",
"description": "Flux2 CRD",
"engines": {
"lens": "^5.0.0"
},
"main": "dist/main.js",
"renderer": "dist/renderer.js",
"license": "MIT",
"author": {
"name": "Guillaume Le Biller",
"url": "https://github.com/Kissy"
},
"maintainers": [
{
"name": "Guillaume Le Biller",
"email": "[email protected]"
}
],
"contributes": {
"crds": [],
"cloudProviders": [],
"kubernetesDistros": []
},
"keywords": [
"lens",
"extension",
"k8slens",
"kubernetes",
"fluxcd"
],
"repository": {
"type": "git",
"url": "https://github.com/glebiller/flux-lens-extension.git"
},
"files": [
"package.json",
"CHANGELOG.md",
"README.md",
"LICENSE",
"dist/"
],
"scripts": {
"start": "NODE_ENV=development webpack --watch",
"build": "webpack --config webpack.config.js",
"clean": "rm -rf ./dist",
"fmt": "prettier --write \"{*,src/**/*}.+(js|ts*|yml|json)\"",
"fmt:check": "prettier --check \"{*,src/**/*}.+(js|ts*|yml|json)\"",
"lint": "eslint \"{*,src/**/*}.+(js|ts*)\"",
"test": "npm run lint && jest"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@jest-runner/electron": "^3.0.0",
"@k8slens/extensions": "^5.3.3",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.171",
"@types/node": "^16.4.1",
"@types/react": "^17.0.14",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"css-loader": "^5.2.6",
"electron": "^11.0.3",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"lodash": "^4.17.21",
"mobx": "^6.3.2",
"moment": "^2.29.1",
"react-router-dom": "^5.2.0",
"rfc6902": "^5.0.1",
"sass": "^1.45.2",
"sass-loader": "^12.1.0",
"style-loader": "^2.0.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2"
},
"jest": {
"runner": "@jest-runner/electron",
"testEnvironment": "@jest-runner/electron/environment"
},
"lingui": {
"locales": [
"en"
]
}
}