-
Notifications
You must be signed in to change notification settings - Fork 167
/
Copy pathpackage.json
67 lines (67 loc) · 2.09 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
{
"name": "elasticvue",
"private": true,
"version": "1.5.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"tsc": "tsc --noEmit && vue-tsc",
"lint": "eslint src tests",
"test:unit": "vitest run tests/unit",
"test:unit:watch": "vitest watch tests/unit",
"test:e2e": "playwright test --project=chromium",
"test:e2e:all": "playwright test",
"test:e2e:watch": "PWTEST_WATCH=1 playwright test --project=chromium",
"test:e2e:report": "playwright show-report",
"ci": "yarn lint && yarn tsc && yarn test:unit && yarn test:e2e:all",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"bundle:report": "vite-bundle-visualizer"
},
"dependencies": {
"@codemirror/lang-json": "^6.0.1",
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@lezer/common": "^1.2.3",
"@quasar/extras": "^1.16.17",
"@replit/codemirror-vim": "^6.2.1",
"@tauri-apps/api": "^2.3.0",
"@tauri-apps/plugin-clipboard-manager": "^2.2.2",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-fs": "^2.2.0",
"@tauri-apps/plugin-process": "^2.2.0",
"@tauri-apps/plugin-updater": "^2.6.0",
"codemirror": "^6.0.1",
"idb": "^8.0.2",
"json-bigint": "^1.0.0",
"pinia": "^3.0.1",
"pinia-plugin-persistedstate": "^4.2.0",
"pretty-bytes": "^6.1.1",
"quasar": "^2.18.1",
"ua-parser-js": "^2.0.2",
"uuid": "^11.1.0",
"vue": "^3.5.13",
"vue-i18n": "^11.1.2",
"vue-resizable": "^2.1.7",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "^3.2.0",
"@playwright/test": "^1.51.0",
"@quasar/vite-plugin": "^1.9.0",
"@tauri-apps/cli": "^2.3.1",
"@types/json-bigint": "^1.0.4",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.7.0",
"cross-env": "^7.0.3",
"eslint": "^9.22.0",
"eslint-plugin-vue": "^9.32.0",
"sass": "^1.85.1",
"typescript": "5.7.3",
"vite": "^6.2.2",
"vite-bundle-visualizer": "^1.2.1",
"vitest": "^3.0.8",
"vue-tsc": "^2.2.8"
},
"packageManager": "[email protected]"
}