-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
103 lines (103 loc) · 3.12 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
{
"name": "cylc-ui",
"version": "2.7.0",
"private": true,
"license": "GPL-3.0-only",
"type": "module",
"scripts": {
"build": "vite build",
"build:watch": "yarn run build --watch --mode development",
"checkpoint": "./src/services/mock/generate",
"coverage:unit": "vitest run --coverage",
"coverage:component": "COVERAGE=true yarn run test:component",
"coverage:e2e": "COVERAGE=true yarn run test:e2e",
"dev": "yarn run serve",
"lint": "eslint . --ext .js,.jsx,.mjs,.cjs,.ts,.tsx,.vue --ignore-path .gitignore",
"lint:compat": "eslint dist/ --no-eslintrc -c eslintrc-dist.cjs",
"preview": "node ./scripts/concurrently.cjs serve:jupyterhub preview",
"serve": "node ./scripts/concurrently.cjs serve:jupyterhub serve:vue",
"serve:vue": "vite --mode offline",
"serve:jupyterhub": "nodemon src/services/mock/json-server.cjs --watch src/services/mock/",
"test:component": "cypress open --component",
"test:e2e": "yarn run serve e2e:open",
"test:unit": "vitest",
"test": "vitest run && yarn run serve cy:run"
},
"dependencies": {
"@apollo/client": "3.12.6",
"@hpcc-js/wasm": "2.22.4",
"@lumino/default-theme": "2.1.7",
"@lumino/widgets": "2.5.0",
"@mdi/js": "7.4.47",
"@vueuse/core": "11.3.0",
"apexcharts": "3.41.0",
"axios": "1.7.8",
"dedent": "1.5.3",
"enumify": "2.0.0",
"graphiql": "3.8.3",
"graphql": "16.10.0",
"graphql-tag": "2.12.6",
"lodash-es": "4.17.21",
"markdown-it": "14.1.0",
"mitt": "3.0.1",
"nprogress": "1.0.0-1",
"preact": "10.25.4",
"simple-icons": "2.19.0",
"subscriptions-transport-ws": "0.11.0",
"svg-pan-zoom": "3.6.2",
"vue": "3.4.11",
"vue-i18n": "11.0.1",
"vue-router": "4.5.0",
"vue-the-mask": "0.11.1",
"vue3-apexcharts": "1.4.1",
"vuetify": "3.7.6",
"vuex": "4.1.0"
},
"devDependencies": {
"@cypress/code-coverage": "3.13.10",
"@vitejs/plugin-vue": "5.2.1",
"@vitest/coverage-istanbul": "2.1.8",
"@vue/test-utils": "2.4.6",
"concurrently": "9.1.2",
"cross-fetch": "4.1.0",
"cypress": "13.17.0",
"cypress-vite": "1.6.0",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-compat": "4.2.0",
"eslint-plugin-cypress": "2.15.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-vue": "9.32.0",
"eslint-plugin-vuetify": "2.5.1",
"express": "4.21.2",
"express-ws": "5.0.2",
"istanbul-lib-coverage": "3.2.2",
"jsdom": "26.0.0",
"json-server": "0.17.4",
"nodemon": "3.1.9",
"nyc": "17.1.0",
"sass-embedded": "1.81.0",
"sinon": "19.0.2",
"standard": "17.1.2",
"vite": "6.0.9",
"vite-plugin-eslint": "1.8.1",
"vite-plugin-istanbul": "6.0.2",
"vite-plugin-vuetify": "2.0.4",
"vitest": "2.1.8"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"bugs": {
"url": "https://github.com/cylc/cylc-ui/issues"
},
"packageManager": "[email protected]"
}