-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.86 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
{
"name": "component-store",
"version": "0.1.0",
"description": "Component store to list, view and deploy various components.",
"keywords": [
"kubebb",
"component",
"store",
"helm"
],
"license": "ISC",
"scripts": {
"build": "pnpm build:server && pnpm build:portal",
"build:client": "pnpm --filter '*-client' build",
"build:menu": "pnpm --filter '*-portal' build:menu",
"build:portal": "pnpm --filter '*-portal' build",
"build:server": "pnpm --filter '*-server' build",
"dev:portal": "pnpm --filter '*-portal' dev",
"dev:server": "pnpm --filter '*-server' start:dev",
"lint-staged": "lint-staged",
"prepare": "husky install",
"start": "pnpm start:portal",
"start:portal": "pnpm --filter '*-portal' start",
"start:server": "pnpm --filter '*-server' start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"**/*.js?(x)": [
"eslint --fix",
"prettier --write"
],
"**/*.ts?(x)": [
"eslint --fix",
"prettier --parser=typescript --write"
],
"**/*.less": [
"stylelint --allow-empty-input --syntax less",
"prettier --write"
],
"**/*.{md,json}": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"eslint": "^8.56.0",
"eslint-config-tenx": "^4.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-packagejson": "^2.4.5",
"stylelint": "^13.3.3",
"stylelint-config-tenx": "^2.1.0"
},
"authors": [
{
"name": "dayuy",
"email": "[email protected]"
},
{
"name": "Jandiasnow",
"email": "[email protected]"
},
{
"name": "Carrotzpc",
"email": "[email protected]"
}
]
}