-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathpackage.json
73 lines (73 loc) · 2.17 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
73
{
"name": "ner-annotator",
"version": "2.1.0",
"private": true,
"type": "module",
"scripts": {
"tauri": "tauri",
"test": "jest",
"dev": "vite",
"build": "vite build",
"build-gh": "vite build --base=/ner-annotator/",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "playwright test",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@fontsource-variable/nunito": "^5.1.0",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^3.0.3",
"@quasar/extras": "^1.16.13",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-clipboard-manager": "^2.0.0",
"@tauri-apps/plugin-dialog": "~2",
"@tauri-apps/plugin-fs": "~2",
"@tauri-apps/plugin-global-shortcut": "~2",
"@tauri-apps/plugin-http": "~2",
"@tauri-apps/plugin-notification": "~2",
"@tauri-apps/plugin-os": "~2",
"@tauri-apps/plugin-process": "~2",
"@tauri-apps/plugin-shell": "~2",
"core-js": "^3.30.1",
"es6-promise": "^4.2.8",
"quasar": "^2.17.4",
"treebank-tokenizer": "^0.0.1",
"vue": "^3.4.29",
"vuex": "^4.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@playwright/test": "^1.44.1",
"@quasar/vite-plugin": "^1.8.1",
"@rushstack/eslint-patch": "^1.8.0",
"@tauri-apps/cli": "^2.1.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.23.0",
"jest": "^29.5.0",
"jsdom": "^25.0.0",
"prettier": "^3.2.5",
"sass": "^1.78.0",
"sass-embedded": "^1.80.2",
"vite": "^5.3.1",
"vite-plugin-vue-devtools": "^7.3.1",
"vitest": "^2.0.5",
"vue-cli-plugin-quasar": "^5.0.2",
"vue-cli-plugin-tauri": "^1.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"license": "MIT"
}