This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.39 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
{
"name": "frontend",
"version": "0.2.0",
"private": true,
"scripts": {
"build": "vue-cli-service build",
"core": "node tests/e2e/utils/core.js",
"coverage": "npm run test:unit && npm run test:e2e:cli && nyc report --reporter=lcov",
"lint": "vue-cli-service lint",
"serve": "vue-cli-service serve --host 127.0.0.1 --https --port 8443",
"test:e2e": "vue-cli-service test:e2e --url https://127.0.0.1:8443",
"test:e2e:gui": "cross-env NODE_ENV=development concurrently --kill-others --success first \"npm:core\" \"npm:serve\" \"wait-on https-get://127.0.0.1:8443 && npm run test:e2e\"",
"test:e2e:cli": "cross-env NODE_ENV=development concurrently --kill-others --success first \"npm:core\" \"npm:serve\" \"wait-on https-get://127.0.0.1:8443 && npm run test:e2e -- --headless\"",
"test:unit": "nyc --no-clean --silent vue-cli-service test:unit"
},
"dependencies": {
"config": "^3.3.7",
"core-js": "^3.20.3",
"cura-wasm": "^1.5.2",
"material-icons": "^1.10.6",
"qrcode": "^1.5.0",
"register-service-worker": "^1.7.2",
"roboto-fontface": "*",
"socket.io-client": "^4.4.1",
"unified-3d-loader": "^1.1.4",
"vue": "^2.6.14",
"vue-3d-viewer": "^1.0.7",
"vue-router": "^3.5.3",
"vuetify": "^2.6.3",
"vuex": "^3.6.2",
"vuex-persistedstate": "^4.1.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.12",
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-e2e-cypress": "^4.5.15",
"@vue/cli-plugin-eslint": "^4.5.15",
"@vue/cli-plugin-pwa": "^4.5.15",
"@vue/cli-plugin-router": "^4.5.15",
"@vue/cli-plugin-unit-mocha": "^4.5.15",
"@vue/cli-plugin-vuex": "^4.5.15",
"@vue/cli-service": "^4.5.15",
"@vue/test-utils": "1.3.0",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.3.6",
"chromedriver": "^97.0.2",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"cypress-terminal-report": "^3.4.1",
"eslint": "^8.8.0",
"eslint-plugin-vue": "^8.4.0",
"geckodriver": "^3.0.1",
"mongoose": "^6.1.8",
"node-ipc": "^10.1.0",
"null-loader": "^4.0.1",
"nyc": "^15.1.0",
"sass": "^1.49.0",
"sass-loader": "^12.4.0",
"speakeasy": "^2.0.0",
"tmp": "^0.2.1",
"uuid": "^8.3.2",
"vue-cli-plugin-vuetify": "^2.4.5",
"vue-template-compiler": "^2.6.14",
"vuetify-loader": "^1.7.3",
"wait-on": "^6.0.0"
}
}