-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 987 Bytes
/
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
{
"private": true,
"name": "kdot",
"description": "A tool for managing apps on Kubernetes",
"author": {
"name": "Ian Walter",
"url": "https://ianwalter.dev"
},
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"scripts": {
"lint": "eslint .",
"test": "ultra -r test",
"test:ci": "ultra --raw -r test",
"build.docs": "skrt build docs site",
"watch.docs": "skrt watch docs site"
},
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@changesets/cli": "^2.18.0",
"@generates/skrt": "^0.0.7",
"@ianwalter/bff": "^11.0.0",
"@ianwalter/eslint-config": "^6.2.0",
"@ianwalter/renovate-config": "^1.4.6",
"ultra-runner": "^3.10.5",
"zx": "^1.14.1"
},
"skrt": {
"layout": "docs/Layout.jsx"
},
"renovate": {
"extends": [
"@ianwalter"
]
},
"eslintConfig": {
"root": true,
"extends": [
"@ianwalter"
]
},
"eslintIgnore": [
"scripts"
]
}