-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.57 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
{
"name": "@k8slens/styling-sass-sample",
"version": "0.0.1",
"author": "Mirantis, Inc <[email protected]> (https://k8slens.dev)",
"maintainers": [
{
"name": "aleksfront",
"email": "[email protected]"
},
{
"name": "k8slens-bot",
"email": "[email protected]"
}
],
"description": "Lens extension Styling with Sass sample",
"repository": {
"type": "git",
"url": "https://github.com/lensapp/lens-extension-samples.git",
"directory": "styling-sass-sample"
},
"engines": {
"lens": "^5.0.0"
},
"main": "dist/main.js",
"renderer": "dist/renderer.js",
"scripts": {
"start": "webpack --watch",
"build": "npm run clean && webpack",
"clean": "rm -rf ./dist"
},
"dependencies": {
"react-open-doodles": "^1.0.5"
},
"devDependencies": {
"@k8slens/extensions": "^5.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-router": "^5.1.8",
"@types/webpack": "^4.41.17",
"css-loader": "^5.0.0",
"mobx": "^5.15.5",
"react": "^16.13.1",
"sass": "^1.29.0",
"sass-loader": "^10.0.4",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^4.2.0"
},
"license": "MIT",
"homepage": "https://github.com/lensapp/lens-extension-samples",
"bugs": {
"url": "https://github.com/lensapp/lens-extension-samples/issues"
},
"keywords": [
"example",
"extension",
"k8slens",
"lens",
"mirantis",
"tutorial",
"styling"
]
}