-
Notifications
You must be signed in to change notification settings - Fork 162
/
Copy pathpackage.json
64 lines (64 loc) · 2.01 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
{
"name": "elasticvue",
"private": true,
"version": "1.4.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.15",
"@replit/codemirror-vim": "^6.2.1",
"@tauri-apps/api": "^2.2.0",
"@tauri-apps/plugin-clipboard-manager": "2.2.0",
"@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.3.1",
"codemirror": "^6.0.1",
"idb": "^8.0.1",
"json-bigint": "^1.0.0",
"pinia": "^2.3.0",
"pinia-plugin-persistedstate": "^4.2.0",
"pretty-bytes": "^6.1.1",
"quasar": "^2.17.6",
"vue": "^3.5.13",
"vue-i18n": "^11.0.1",
"vue-resizable": "^2.1.7",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "^3.2.0",
"@playwright/test": "^1.49.1",
"@quasar/vite-plugin": "^1.9.0",
"@tauri-apps/cli": "^2.2.4",
"@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.18.0",
"eslint-plugin-vue": "^9.32.0",
"sass": "^1.83.4",
"typescript": "5.7.3",
"vite": "^6.0.7",
"vite-bundle-visualizer": "^1.2.1",
"vitest": "^3.0.2",
"vue-tsc": "^2.2.0"
}
}