-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 2.17 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
{
"name": "ex-webthrottle2",
"version": "0.0.0",
"engines": {
"node": ">=20.0.0 < 21.0.0"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test:unit": "vitest run --environment jsdom --root src/",
"test:e2e": "playwright test",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore --config .eslintrc.json",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --config .eslintrc.json"
},
"dependencies": {
"@cloudthrottle/dcc-ex--commands": "^0.12.0",
"@cloudthrottle/dcc-ex--serial-communicator": "^0.1.0",
"@mdi/font": "^7.3.67",
"pinia": "^2.1.7",
"roboto-fontface": "^0.10.0",
"serialport": "^12.0.0",
"three": "^0.160.0",
"vue": "^3.3.13",
"vue-round-slider": "github:dexslab/vue-round-slider",
"vue-router": "^4.2.5",
"vuetify": "^3.5.1",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@babel/types": "^7.23.6",
"@iconify/vue": "^4.1.1",
"@playwright/test": "^1.41.1",
"@rushstack/eslint-patch": "^1.7.1",
"@types/jsdom": "^21.1.4",
"@types/node": "^20.11.6",
"@types/three": "^0.160.0",
"@types/webfontloader": "^1.6.38",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-vue": "^4.5.2",
"@vitest/coverage-istanbul": "^1.1.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.3",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-vue": "^9.18.1",
"jsdom": "^23.0.1",
"npm-run-all": "^4.1.5",
"playwright": "^1.41.1",
"sass": "^1.69.5",
"typescript": "^5.3.3",
"vite": "^4.5.0",
"vite-plugin-vuetify": "^1.0.2",
"vitest": "^1.1.0",
"vitest-github-actions-reporter": "^0.10.0",
"vue-tsc": "^1.8.27"
}
}