-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.19 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
{
"name": "tokio-console-web",
"private": true,
"type": "module",
"scripts": {
"prebuild": "pnpm gen",
"predev": "pnpm gen",
"build": "nuxt build",
"dev": "nuxt dev",
"postinstall": "nuxt prepare",
"gen": "wasm-pack build histogram --out-dir ../gen/histogram && buf generate proto",
"lint": "eslint --ext .js,.vue,.ts --ignore-path .gitignore --ignore-pattern gen .",
"lint:fix": "eslint --fix --ext .js,.vue,.ts --ignore-path .gitignore --ignore-pattern gen .",
"fmt": "prettier --check .",
"fmt:fix": "prettier --write .",
"prepare": "husky .husky",
"test": "vitest"
},
"devDependencies": {
"@bufbuild/buf": "^1.28.1",
"@bufbuild/protobuf": "^1.5.0",
"@bufbuild/protoc-gen-es": "^1.5.0",
"@connectrpc/protoc-gen-connect-es": "^1.1.3",
"@nuxt/devtools": "latest",
"@nuxt/test-utils": "^3.8.1",
"@nuxtjs/color-mode": "^3.3.2",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@pinia/testing": "^0.1.5",
"@testing-library/vue": "^8.0.1",
"@vueuse/core": "^11.0.0",
"@vueuse/nuxt": "^11.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "9.27.0",
"happy-dom": "^15.0.0",
"husky": "^9.0.11",
"nuxt": "^3.13.2",
"prettier": "3.3.3",
"typescript": "^5.4.2",
"vite-plugin-top-level-await": "^1.4.1",
"vite-plugin-wasm": "^3.3.0",
"vitest": "^2.0.0",
"vue": "^3.3.8",
"vue-router": "^4.2.5",
"vue-tsc": "^2",
"wasm-pack": "^0.13.1"
},
"dependencies": {
"@connectrpc/connect": "^1.1.3",
"@connectrpc/connect-web": "^1.1.3",
"@iconify-json/simple-icons": "^1.1.82",
"@nuxt/ui": "^2.17.0",
"@pinia/nuxt": "^0.5.4",
"chart.js": "^4.4.1",
"consola": "^3.2.3",
"exponential-backoff": "^3.1.1",
"pinia": "^2.2.2",
"vue-chartjs": "^5.3.0"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
}
}