forked from Kong/konnect-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.63 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
111
{
"name": "@kong/konnect-portal",
"version": "0.1.0",
"private": false,
"license": "Apache-2.0",
"scripts": {
"start": "yarn dev",
"dev": "vite",
"serve": "cross-env PREVIEW_LOCAL=true yarn build && vite preview",
"build": "vite build --mode production",
"build:analyze": "BUILD_VISUALIZER=true vite build --mode production",
"lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore src",
"lint:fix": "yarn lint --fix",
"commit": "cz",
"build:watch": "vite build --watch",
"build:watch:dev": "vite build --watch --mode development --minify false",
"test": "yarn lint && yarn test:e2e",
"test:e2e": "concurrently --kill-others \"yarn build:watch\" \"cypress open -C cypress.config.js --e2e -b chrome\" \"node cypress.server.mjs \"",
"test:e2e:ci": "concurrently --success first --kill-others \"yarn build && DEBUG=cypress:server cypress run -C cypress.config.js --e2e -b chrome\" \"node cypress.server.mjs \"",
"typecheck": "vue-tsc -p './tsconfig.json' --noEmit",
"typecheck:tests": "vue-tsc -p './cypress/e2e/tsconfig.json' --noEmit",
"semantic-release": "semantic-release"
},
"optionalDependencies": {
"launchdarkly-js-client-sdk": "3.1.3"
},
"dependencies": {
"@kong-ui-public/analytics-chart": "0.15.2",
"@kong-ui-public/analytics-metric-provider": "1.2.9",
"@kong-ui-public/analytics-utilities": "0.10.1",
"@kong-ui-public/copy-uuid": "1.1.5",
"@kong-ui-public/document-viewer": "2.0.16",
"@kong-ui-public/spec-renderer": "2.1.5",
"@kong/kong-auth-elements": "2.11.1",
"@kong/kongponents": "8.127.0",
"@kong/sdk-portal-js": "2.10.0",
"@xstate/vue": "2.0.0",
"axios": "1.6.7",
"date-fns": "3.3.0",
"dotenv": "16.4.5",
"js-yaml": "4.1.0",
"pinia": "2.1.3",
"vue": "3.4.21",
"vue-router": "4.3.0",
"xstate": "4.38.3"
},
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitejs/plugin-vue": "5.0.4",
"@vitejs/plugin-vue-jsx": "3.1.0",
"@vue/compiler-sfc": "3.4.21",
"@vue/eslint-config-standard": "8.0.1",
"@vue/eslint-config-typescript": "12.0.0",
"autoprefixer": "10.4.14",
"commitizen": "4.3.0",
"concurrently": "8.2.0",
"cross-env": "7.0.3",
"cypress": "13.7.0",
"cypress-split": "1.20.1",
"cypress-terminal-report": "6.0.1",
"cz-conventional-changelog": "3.3.0",
"druid.d.ts": "0.12.2",
"eslint": "8.57.0",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-portal-vue": "file:./eslint-plugin-portal-vue",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-standard": "5.0.0",
"eslint-plugin-vue": "9.22.0",
"express": "4.18.2",
"lefthook": "1.6.1",
"openapi-types": "12.1.3",
"rollup-plugin-visualizer": "5.12.0",
"sass": "1.71.1",
"semantic-release": "22.0.5",
"tailwindcss": "3.4.0",
"typescript": "5.3.2",
"vite": "5.1",
"vite-svg-loader": "5.1.0",
"vue-tsc": "1.8.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"engines": {
"npm": "please-use-yarn",
"node": ">=18.17.1 < 19",
"yarn": ">=1.22.19"
},
"volta": {
"node": "18.17.1",
"yarn": "1.22.19"
},
"repository": {
"type": "git",
"url": "https://github.com/Kong/konnect-portal.git"
}
}