forked from Kong/public-ui-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.6 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
103
104
105
106
107
108
109
110
{
"name": "@kong-ui-public/public-ui-components",
"version": "0.0.0-development",
"private": true,
"scripts": {
"build": "cross-env FORCE_COLOR=1 pnpm -r run build",
"lint": "cross-env FORCE_COLOR=1 pnpm -r run lint",
"lint:fix": "cross-env FORCE_COLOR=1 pnpm -r run lint:fix",
"stylelint": "cross-env FORCE_COLOR=1 pnpm -r run stylelint",
"stylelint:fix": "cross-env FORCE_COLOR=1 pnpm -r run stylelint:fix",
"typecheck": "cross-env FORCE_COLOR=1 pnpm -r run typecheck",
"test:component": "BABEL_ENV=cypress pnpm -r run test:component",
"test:component:open": "BABEL_ENV=cypress cypress open --component -b chrome",
"test:component:ci": "BABEL_ENV=cypress cypress run --component -b chrome",
"test:unit": "cross-env FORCE_COLOR=1 pnpm -r run test:unit",
"test:unit:open": "cross-env FORCE_COLOR=1 pnpm -r run test:unit:open",
"create-package": "pnpm --filter \"@kong-ui-public/cli\" run create-package",
"commit": "cz",
"lerna": "lerna"
},
"devDependencies": {
"@babel/types": "^7.24.0",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@digitalroute/cz-conventional-changelog-for-jira": "^8.0.1",
"@evilmartians/lefthook": "^1.6.7",
"@kong/design-tokens": "1.12.11",
"@kong/kongponents": "9.0.0-alpha.124",
"@rushstack/eslint-patch": "^1.7.2",
"@types/flat": "^5.0.5",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^21.1.6",
"@types/node": "^18.19.26",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vitest/ui": "^1.3.1",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.5",
"@vue/tsconfig": "^0.5.1",
"c8": "^9.1.0",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cypress": "^13.6.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.22.0",
"js-yaml": "^4.1.0",
"jsdom": "^24.0.0",
"lerna": "^8.1.2",
"npm-run-all2": "^6.1.2",
"postcss": "^8.4.38",
"postcss-custom-properties": "^13.3.6",
"postcss-html": "^1.6.0",
"rimraf": "^5.0.5",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.71.1",
"stylelint": "^16.2.1",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-order": "^6.0.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tslib": "^2.6.2",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "~5.3.3",
"uuid": "^9.0.1",
"vite": "^5.2.7",
"vite-plugin-externals": "^0.6.2",
"vite-plugin-vue-devtools": "^7.0.25",
"vitest": "^1.3.1",
"vue": "^3.4.21",
"vue-router": "^4.3.0",
"vue-tsc": "^1.8.27"
},
"workspaces": [
"packages/*/*"
],
"repository": {
"type": "git",
"url": "https://github.com/Kong/public-ui-components"
},
"license": "Apache-2.0",
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"skipScope": false,
"jiraOptional": true,
"jiraLocation": "post-description",
"jiraPrepend": "[",
"jiraAppend": "]"
}
},
"engines": {
"node": ">=18.19.1"
},
"volta": {
"node": "18.19.1",
"pnpm": "8.15.5"
}
}