-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
119 lines (119 loc) · 3.43 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
119
{
"name": "coral",
"description": "Coral is a web-based cohort analysis tool to interactively create, refine, and analyze patient cohorts.",
"homepage": "https://caleydo.org",
"version": "5.0.0",
"author": {
"name": "PatrickAdelberger",
"email": "[email protected]",
"url": "https://jku-vds-lab.at/"
},
"license": "SEE LICENSE FILE",
"main": "dist/index.js",
"bugs": {
"url": "https://github.com/Caleydo/coral/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:Caleydo/coral.git"
},
"private": true,
"scripts": {
"all": "yarn run lint:fix && yarn run test && yarn run build && yarn run dist",
"build": "yarn run clean && yarn run compile && yarn run copy",
"clean": "visyn_scripts clean build dist lib",
"compile:watch": "visyn_scripts compile --watch",
"compile": "visyn_scripts compile",
"copy": "visyn_scripts copy",
"cy:open": "cypress open",
"cy:run": "cypress run",
"delete-dependencies": "visyn_scripts clean node_modules",
"predist": "yarn run lint && yarn run test && yarn run build",
"dist": "mkdir lib && cd dist && tar cvzf ../lib/bundle.tar.gz *",
"docs": "visyn_scripts docs",
"lint:fix": "visyn_scripts lint --fix",
"lint": "visyn_scripts lint",
"prepack": "yarn run build",
"start": "visyn_scripts start --env workspace_mode=single",
"storybook:build": "NODE_OPTIONS=--max_old_space_size=4096 build-storybook",
"storybook": "NODE_OPTIONS=--max_old_space_size=4096 start-storybook -p 6006",
"test": "visyn_scripts test",
"webpack:dev": "visyn_scripts build --mode development --env workspace_mode=single",
"webpack:prod": "visyn_scripts build --mode production --env workspace_mode=single"
},
"files": [
"src",
"index.js",
"phovea.js",
"dist",
"build",
"coral",
"__init__.py",
"__main__.py",
"requirements.txt",
"requirements_dev.txt",
"docker_packages.txt"
],
"engines": {
"npm": ">=8",
"node": ">=16"
},
"dependencies": {
"@keckelt/tsne": "^1.0.0",
"arquero": "^4.8.0",
"clone": "^2.1.2",
"comlink": "^4.2.0",
"jquery": "^3.5.0",
"lineupjs": "4.6.2",
"lodash.merge": "^4.x",
"lodash.pick": "^4.4.0",
"loglevel": "^1.6.4",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-router-dom": "^5.2.0",
"split-grid": "^1.0.9",
"tdp_core": "^20.1.0",
"tdp_publicdb": "git+ssh://[email protected]:Caleydo/tdp_publicdb#semver:^14.0.0",
"tippy.js": "^6.2.6",
"tourdino": "git+ssh://[email protected]:Caleydo/tourdino#semver:^8.0.0",
"vega": "~5.20.0",
"vega-embed": "6.19.1",
"vega-functions": "5.12.0",
"vega-lite": "5.1.1",
"vega-parser": "6.1.3",
"visyn_scripts": "^4.1.0"
},
"devDependencies": {
"@types/d3-selection": "^3.0.2",
"@types/d3-transition": "^3.0.1",
"mkdirp": "0.5.1",
"tslint": "~5.20.1",
"worker-loader": "^2.0.0"
},
"resolutions": {
"@types/react": "~18.2.0",
"@types/react-dom": "~18.2.0",
"react": "~18.2.0",
"react-dom": "~18.2.0"
},
"browser": {
"fs": false,
"os": false,
"path": false
},
"visyn": {
"entries": {
"app": {
"js": "dist/initialize.app.js",
"template": "dist/app.template.ejs",
"html": "app/index.html",
"chunkName": "app",
"excludeChunks": []
}
},
"copyFiles": [
"dist/clientConfig.json"
]
},
"packageManager": "[email protected]"
}