-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
72 lines (72 loc) · 2.27 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
{
"name": "dockit",
"private": true,
"type": "module",
"version": "0.5.0",
"description": "DocKit is a desktop client designed for NoSQL database, support Elasticsearch and OpenSearch across Mac, windows and Linux",
"author": "geekfun <[email protected]>",
"homepage": "ttps://dockit.geekfun.club",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/geek-fun/dockit.git"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint:fix": "eslint --fix ./",
"lint:check": "eslint ./",
"test": "jest --runInBand --coverage --coverageReporters json-summary text html lcov",
"test:ci": "jest --runInBand --ci --coverage --coverageReporters json-summary text html lcov",
"build:macos": "tauri build -t universal-apple-darwin"
},
"dependencies": {
"@tauri-apps/api": "^1.6.0",
"debug": "^4.3.7",
"highlight.js": "^11.10.0",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"monaco-editor": "^0.52.0",
"pinia": "^2.2.6",
"pinia-plugin-persistedstate": "^3.2.3",
"pretty-bytes": "^6.1.1",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store#v1",
"tauri-plugin-system-info-api": "^1.0.2",
"ulidx": "^2.4.0",
"vue": "^3.5.12",
"vue-i18n": "^9.14.1",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@tauri-apps/cli": "^1",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.12",
"@types/markdown-it": "^14.1.1",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vicons/antd": "^0.12.0",
"@vicons/carbon": "^0.12.0",
"@vicons/fa": "^0.12.0",
"@vitejs/plugin-vue": "^5.0.5",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.26.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"naive-ui": "^2.38.2",
"prettier": "^3.3.2",
"sass": "^1.77.6",
"ts-jest": "^29.2.5",
"typescript": "^5.5.2",
"unplugin-auto-import": "^0.17.6",
"unplugin-vue-components": "^0.27.1",
"vite": "^5.3.1",
"vue-tsc": "^2.0.22"
}
}