-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.87 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": "multilink",
"version": "0.1.0",
"private": true,
"description": "An interactive node-link diagram application for MultiNet",
"author": "Visualization Design Lab <vdl.sci.utah.edu>",
"scripts": {
"serve": "vite --host 0.0.0.0 --port 8080",
"build": "vite build",
"lint": "eslint --ext .ts,.vue --ignore-path .gitignore --no-fix src",
"lint:file": "eslint --ext .ts,.vue --ignore-path .gitignore --no-fix",
"lint:fix": "eslint --ext .ts,.vue --ignore-path .gitignore --fix src"
},
"dependencies": {
"@girder/oauth-client": "^0.7.7",
"@trrack/core": "^1.3.0-beta.1",
"@trrack/vis-react": "^1.3.0",
"@types/d3": "^7.4.0",
"@vitejs/plugin-vue2": "^2.2.0",
"@vue/eslint-config-airbnb": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vueuse/core": "^10.0.2",
"d3": "^7.8.0",
"eslint-import-resolver-alias": "^1.1.2",
"multinet": "^0.21.16",
"multinet-components": "^0.0.6",
"pinia": "^2.0.28",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"unplugin-vue-components": "^0.22.12",
"vega": "^5.25.0",
"vega-embed": "^6.22.1",
"vega-lite": "^5.8.0",
"vite": "^4.0.5",
"vue": "^2.7.0",
"vuetify": "^2.6.10",
"yorkie": "^2.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "8",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "8",
"eslint-plugin-vuejs-accessibility": "^1.2.0",
"eslint-plugin-vuetify": "^1.1.0",
"lint-staged": "^10.5.0",
"sass": "^1.19.0",
"typescript": "^4.0.0",
"vue-template-compiler": "2.7.10"
},
"repository": "https://github.com/multinet-app/multilink",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"yarn lint:file"
],
"*.vue": [
"yarn lint:file"
]
}
}