forked from cylc/cylc-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (108 loc) · 3.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
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": "cylc-ui",
"version": "1.5.0",
"private": true,
"license": "GPL-3.0-only",
"scripts": {
"build": "vue-cli-service build",
"build:report": "vue-cli-service build --report",
"build:watch": "vue-cli-service build --watch --mode development",
"checkpoint": "./src/services/mock/generate",
"coverage:unit": "nyc vue-cli-service test:unit",
"coverage:e2e": "bash -c 'concurrently --names \"SERVER,TESTS\" --prefix-colors \"yellow,blue\" --success \"first\" --kill-others \"yarn run serve:jupyterhub\" \"nyc vue-cli-service test:e2e --mode offline ${0}\"'",
"dev": "yarn run serve",
"docs": "jsdoc -c jsdoc.conf.json",
"lint": "vue-cli-service lint",
"serve": "concurrently --names 'SERVER,CLIENT' --prefix-colors 'yellow,blue' --success \"first\" --kill-others 'yarn run serve:jupyterhub' 'yarn run serve:vue'",
"serve:vue": "vue-cli-service serve --mode offline",
"serve:jupyterhub": "nodemon src/services/mock/json-server.js",
"test:e2e": "bash -c 'concurrently --names \"SERVER,TESTS\" --prefix-colors \"yellow,blue\" --success \"first\" --kill-others \"yarn run serve:jupyterhub\" \"vue-cli-service test:e2e --mode offline ${0}\"'",
"test:unit": "vue-cli-service test:unit",
"test": "yarn run test:unit || exit 1; yarn run coverage:e2e --headless"
},
"dependencies": {
"@apollo/client": "^3.5.8",
"@hpcc-js/wasm": "1.13",
"@lumino/algorithm": "^1.9.1",
"@lumino/default-theme": "^0.22.0",
"@lumino/widgets": "^1.31.1",
"axios": "^1.0.0",
"core-js": "3",
"dedent": "^0.7.0",
"enumify": "^2.0.0",
"graphiql": "~1.8.0",
"graphql": "~15.8.0",
"graphql-tag": "~2.12.6",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"mitt": "^3.0.0",
"nprogress": "^1.0.0-1",
"preact": "^10.6.6",
"preact-compat": "^3.19.0",
"svg-pan-zoom": "^3.6.1",
"vue": "^2.6.14",
"vue-i18n": "^8.27.0",
"vue-meta": "^2.4.0",
"vue-router": "^3.5.3",
"vue-the-mask": "^0.11.1",
"vuetify": "^2.6.10",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.14.8",
"@cypress/code-coverage": "^3.9.12",
"@cypress/vue": "^5.0.0",
"@cypress/webpack-preprocessor": "^5.11.0",
"@mdi/js": "^7.0.0",
"@vue/babel-preset-app": "^4.5.13",
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-e2e-cypress": "^5.0.5",
"@vue/cli-plugin-eslint": "^5.0.4",
"@vue/cli-plugin-unit-mocha": "^5.0.1",
"@vue/cli-service": "^4.5.18",
"@vue/test-utils": "^1.2.2",
"babel-plugin-istanbul": "^6.1.1",
"bufferutil": "^4.0.6",
"chai": "^4.3.6",
"circular-dependency-plugin": "^5.2.2",
"concurrently": "^7.0.0",
"cross-fetch": "^3.1.5",
"cypress": "^12.0.0",
"eslint": "^8.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-no-only-tests": "^3.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.0.0",
"express": "^4.17.2",
"express-ws": "^5.0.2",
"graphql-language-service-utils": "^2.5.3",
"istanbul-instrumenter-loader": "^3.0.1",
"istanbul-lib-coverage": "^3.0.0",
"json-server": "^0.17.0",
"nodemon": "^2.0.19",
"nyc": "^15.1.0",
"sass": "~1.60.0",
"sass-loader": "^10.2.0",
"sinon": "^15.0.0",
"standard": "^17.0.0",
"subscriptions-transport-ws": "^0.11.0",
"utf-8-validate": "^6.0.0",
"vue-cli-plugin-vuetify": "^2.4.2",
"vue-cli-plugin-vuetify-essentials": "^0.8.3",
"vue-template-compiler": "^2.6.14",
"vuetify-loader": "^1.7.3",
"wasm-loader": "^1.3.0",
"webpack": "^4.46.0"
},
"bugs": {
"url": "https://github.com/cylc/cylc-ui/issues"
},
"resolutions": {
"webpack-dev-server/selfsigned": "^2.0.1"
},
"packageManager": "[email protected]"
}