-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.98 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.98 KB
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": "annotate-ui",
"version": "2.0.0",
"description": "Protein Function Prediction using Recurrent Neural Networks",
"productName": "ANNotate",
"author": "Han Lin <hotdogee@gmail.com>",
"type": "module",
"private": true,
"scripts": {
"lint": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\"",
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "echo \"No test specified\" && exit 0",
"dev": "quasar dev",
"build": "quasar build",
"postinstall": "quasar prepare"
},
"dependencies": {
"@feathersjs/socketio-client": "^5.0.33",
"@pinia/colada": "^0.15.1",
"@quasar/extras": "^1.16.17",
"@tailwindcss/postcss": "^4.0.13",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "^13.0.0",
"axios": "^1.8.1",
"echarts": "^5.6.0",
"js-md5": "^0.8.3",
"lucide-vue-next": "^0.507.0",
"pinia": "^3.0.1",
"pinia-plugin-persistedstate": "^4.2.0",
"quasar": "^2.18.0",
"socket.io-client": "^4.8.1",
"tailwindcss": "^4.0.13",
"utils-lite": "^0.1.15",
"vue": "^3.5.13",
"vue-gtag": "^3.3.0",
"vue-i18n": "^11.1.1",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@quasar/app-vite": "^2.1.1",
"@quasar/quasar-app-extension-qmarkdown": "^2.0.5",
"@types/node": "^22.13.8",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.4.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.21.0",
"eslint-plugin-vue": "^10.0.0",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"typescript": "~5.8.2",
"vite-plugin-checker": "^0.9.0",
"vue-tsc": "^2.2.8"
},
"engines": {
"node": "^28 || ^26 || ^24 || ^22 || ^20 || ^18",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}