-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
118 lines (118 loc) · 3.55 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "upenncontrast",
"type": "module",
"version": "0.1.0",
"license": "Apache 2.0",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"tsc": "vue-tsc --noEmit",
"serve": "vite preview --host 0.0.0.0",
"preinstall": "npx only-allow pnpm",
"postinstall": "patch-package",
"emscripten-build": "pnpm emscripten-build:release",
"emscripten-build:release": "itk-wasm --source-dir itk build",
"emscripten-build:debug": "itk-wasm --source-dir itk build -- -DCMAKE_BUILD_TYPE=Debug",
"lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore src",
"lint:fix": "pnpm lint --fix",
"lint:ci": "pnpm lint --max-warnings=0",
"test": "vitest"
},
"pnpm": {
"overrides": {
"@girder/components>js-cookie": "^3.0.5",
"@girder/components>markdown-it": "^14.0.0",
"uc.micro": "2.0.0"
}
},
"dependencies": {
"@girder/components": "2.2.10",
"@mdi/font": "^5.3.45",
"@types/bluebird": "^3.5.42",
"@types/d3-array": "^3.0.1",
"@types/d3-color": "^1.2.2",
"@types/d3-drag": "^1.2.3",
"@types/d3-scale": "^3.2.1",
"@types/d3-selection": "1.4.2",
"@types/d3-shape": "^1.3.2",
"@types/d3-zoom": "^1.7.4",
"@types/dataframe-js": "^1.4.1",
"@types/jquery": "^3.5.16",
"@types/lodash": "^4.14.202",
"@types/mousetrap": "^1.6.4",
"@types/qs": "^6.9.11",
"@types/sortablejs": "^1.15.1",
"@types/uuid": "^8.3.1",
"axios": "^1.6.8",
"bluebird": "^3.7.2",
"d3": "3.5.17",
"d3-array": "^2.12.1",
"d3-color": "^3.1.0",
"d3-drag": "^1.2.5",
"d3-scale": "^4.0.2",
"d3-selection": "^1.4.2",
"d3-shape": "^1.3.7",
"d3-zoom": "^3.0.0",
"dataframe-js": "^1.4.4",
"fflate": "^0.7.4",
"fs-extra": "^10.0.0",
"html2canvas": "^1.4.1",
"itk-wasm": "^1.0.0-b.166",
"lodash": "^4.17.21",
"marked": "^14.1.1",
"mousetrap": "^1.6.4",
"onnxruntime-common": "1.17.0-dev.20240109-ab897a4a40",
"onnxruntime-web": "1.17.0-dev.20240111-d0bac8216d",
"papaparse": "^5.4.1",
"patch-package": "^8.0.0",
"qs": "^6.11.2",
"reflect-metadata": "^0.1.13",
"register-service-worker": "^1.6.2",
"roboto-fontface": "*",
"sortablejs": "^1.15.2",
"uuid": "^3.4.0",
"vue": "^2.7.1",
"vue-async-computed": "^3.4.1",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^9.1.2",
"vue-resize": "^0.4.5",
"vue-router": "^3.1.3",
"vue-tooltip-directive": "1.0.6-1",
"vuedraggable": "^2.24.3",
"vuetify": "^2.7.1",
"vuex": "^3.6.2",
"vuex-module-decorators": "^0.11.0"
},
"devDependencies": {
"@types/node": "^18.19.0",
"@types/papaparse": "^5.3.8",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitejs/plugin-vue2": "^2.3.1",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"eslint": "8.56.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-vue": "^9.19.2",
"geojs": "^1.12.8",
"jsdom": "^24.0.0",
"prettier": "^3.1.1",
"pug": "^3.0.1",
"pug-plain-loader": "^1.0.0",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "~1.23.7",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.11",
"vite-plugin-static-copy": "^1.0.1",
"vitest": "^1.1.3",
"vue-template-compiler": "^2.7.1",
"vue-tsc": "^1.8.27",
"vuetify-loader": "^1.4.2",
"worker-loader": "^3.0.8",
"yaml-front-matter": "^4.0.0"
}
}