forked from cars10/elasticvue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "elasticvue",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"tsc": "tsc --noEmit && vue-tsc",
"lint": "eslint --ext .js,.vue,.ts src",
"test:unit": "vitest run 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",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"bundle:report": "vite-bundle-visualizer"
},
"dependencies": {
"@intlify/unplugin-vue-i18n": "^0.12.0",
"@quasar/extras": "^1.16.4",
"@tauri-apps/api": "^1.4.0",
"ace-builds": "^1.23.1",
"idb": "^7.1.1",
"pinia": "^2.1.4",
"pinia-plugin-persistedstate": "^3.1.0",
"pretty-bytes": "^6.1.0",
"quasar": "^2.12.2",
"vue": "^3.3.4",
"vue-i18n": "^9.2.2",
"vue-resizable": "^2.1.7",
"vue-router": "^4.2.2"
},
"devDependencies": {
"@playwright/test": "^1.35.1",
"@quasar/vite-plugin": "^1.4.1",
"@tauri-apps/cli": "^1.4.0",
"@types/ace": "^0.0.48",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.44.0",
"eslint-plugin-vue": "^9.15.1",
"sass": "1.32.13",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vite-bundle-visualizer": "^0.8.0",
"vitest": "^0.33.0",
"vue-tsc": "^1.8.3"
}
}