forked from hms-dbmi/udi-grammar
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.69 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.69 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
{
"name": "udi-training-data-review",
"version": "0.0.1",
"description": "Universal Discovery Interface Data Review Tool",
"author": "dev-lan <devinscottlange@gmail.com>",
"type": "module",
"productName": "UDI Review",
"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",
"build-all": "node build-all.js",
"postinstall": "quasar prepare"
},
"dependencies": {
"@quasar/extras": "^1.16.4",
"lodash": "^4.17.21",
"lz-string": "^1.5.0",
"pinia": "^3.0.1",
"quasar": "^2.16.0",
"sqlite3": "^5.1.7",
"udi-toolkit": "^0.0.24",
"uuid": "^11.1.0",
"vue": "^3.4.18",
"vue-router": "^4.0.12",
"vue3-json-viewer": "^2.3.0"
},
"devDependencies": {
"@electron/packager": "^18.3.2",
"@eslint/js": "^9.14.0",
"@quasar/app-vite": "^2.1.0",
"@types/lodash": "^4.17.16",
"@types/node": "^20.5.9",
"@types/sqlite3": "^5.1.0",
"@types/vue3-json-viewer": "^2.2.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.4.0",
"autoprefixer": "^10.4.2",
"electron": "^36.1.0",
"eslint": "^9.14.0",
"eslint-plugin-vue": "^9.30.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"typescript": "~5.5.3",
"vite-plugin-checker": "^0.9.0",
"vue-tsc": "^2.0.29"
},
"engines": {
"node": "^28 || ^26 || ^24 || ^22 || ^20 || ^18",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}