generated from kui-shell/KuiClientTemplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.87 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
{
"name": "madwizard.io web site",
"version": "0.0.14",
"description": "This project uses Kui to create a static single page web application.",
"scripts": {
"watch:source": "concurrently -n TYPESCRIPT,BABEL --kill-others 'tsc --build tsconfig.json --watch' 'WATCH=--watch npx kui-babel'",
"compile": "npx tsc --build . && npx kui-babel && npx kui-prescan",
"compile:clean": "tsc --build tsconfig.json --clean",
"build": "npm run compile && kui-build-webpack",
"kill": "kill $(lsof -t -i:908${PORT_OFFSET-0}) > /dev/null 2> /dev/null || true",
"watch:browser": "npm run kill; npx kui-prescan && kui-watch-webpack $WATCH_ARGS",
"watch:test": "RUNNING_KUI_TEST=true npm run watch:browser",
"watch": "concurrently -n WEBPACK,TYPESCRIPT --kill-others 'npm run watch:browser' 'npm run watch:source'",
"format": "prettier --write '**/*.{scss,css,html,js,json,md,ts,tsx}'",
"lint": "eslint . --ext '**/*.{js,ts,tsx}'",
"prepare": "husky install",
"postinstall": "npm run compile",
"test": "playwright test"
},
"keywords": [
"kui",
"webpage"
],
"author": "@starpit",
"license": "Apache-2.0",
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"env": {
"browser": true,
"node": true
},
"rules": {
"@typescript-eslint/no-unused-vars": "error"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
]
},
"eslintIgnore": [
"mdist",
"dist",
".#*",
"*~"
],
"lint-staged": {
"**/*.{scss,css,html,js,json,md,ts,tsx}": [
"prettier --write",
"git add"
],
"**/*.{js,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"prettier": {
"semi": false,
"printWidth": 120
},
"devDependencies": {
"@kui-shell/builder": "13.0.0-dev-20230208-151014",
"@kui-shell/react": "13.0.0-dev-20230208-151014",
"@kui-shell/webpack": "13.0.0-dev-20230208-151014",
"@playwright/test": "^1.30.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.1",
"prettier": "^2.8.4",
"concurrently": "^7.6.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@kui-shell/client": "file:./plugins/plugin-client-offline",
"@kui-shell/core": "13.0.0-dev-20230208-151014",
"@kui-shell/plugin-bash-like": "13.0.0-dev-20230208-151014",
"@kui-shell/plugin-carbon-themes": "13.0.0-dev-20230208-151014",
"@kui-shell/plugin-client-common": "13.0.0-dev-20230208-151014",
"@kui-shell/plugin-core-support": "13.0.0-dev-20230208-151014",
"@kui-shell/plugin-madwizard": "13.0.0-dev-20230208-151014",
"@kui-shell/plugin-patternfly4-themes": "13.0.0-dev-20230208-151014"
}
}