-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
111 lines (111 loc) · 3.34 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
{
"name": "tdp_core",
"description": "Target discovery platform for exploring rankings of genes, disease models, and other entities.",
"version": "25.0.1",
"author": {
"name": "datavisyn GmbH",
"email": "[email protected]",
"url": "https://www.datavisyn.io"
},
"license": "BSD-3-Clause",
"homepage": "https://www.datavisyn.io",
"bugs": {
"url": "https://github.com/datavisyn/tdp_core/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:datavisyn/tdp_core.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist",
"cypress",
"tdp_core",
"requirements.txt",
"requirements_dev.txt"
],
"engines": {
"npm": ">=8",
"node": ">=16"
},
"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 --e2e",
"delete-dependencies": "visyn_scripts clean node_modules",
"dist": "mkdir lib && cd dist && tar cvzf ../lib/tdp_core.tar.gz *",
"docs": "visyn_scripts docs",
"lint:fix": "visyn_scripts lint --fix",
"lint": "visyn_scripts lint",
"predist": "yarn run lint && yarn run test && yarn run build",
"start:full": "visyn_scripts start --env workspace_mode=single fast=false",
"start": "visyn_scripts start --env workspace_mode=single",
"test": "visyn_scripts test",
"bundle:dev": "visyn_scripts bundle --mode development --env workspace_mode=single",
"bundle:prod": "visyn_scripts bundle --mode production --env workspace_mode=single"
},
"dependencies": {
"@popperjs/core": "^2.9.3",
"@swc/jest": "^0.2.24",
"@types/bootstrap": "~5.0.15",
"@types/d3-hexbin": "^0.2.3",
"@types/d3v3": "npm:@types/d3@~3.5.36",
"@types/d3v7": "npm:@types/d3@^7.4.0",
"@types/jquery": "~3.5.5",
"@types/papaparse": "~5.3.0",
"@types/react": "~18.2.0",
"@types/react-dom": "~18.2.0",
"@types/select2": "4.0.44",
"bootstrap": "~5.1.0",
"core-js": "2.6.5",
"crypto-js": "^4.0.0",
"d3-hexbin": "^0.2.2",
"d3v3": "npm:d3@~3.5.17",
"d3v7": "npm:d3@^7.4.0",
"jquery": "~3.5.1",
"lodash": "~4.17.20",
"marked": "~3.0.2",
"md5": "^2.3.0",
"papaparse": "~5.3.0",
"popper.js": "^1.15.0",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-highlight-words": "^0.17.0",
"react-select": "^4.3.1",
"select2": "~4.0.13",
"select2-bootstrap-theme": "0.1.0-beta.9",
"use-deep-compare-effect": "^1.8.0",
"visyn_core": "^9.0.0",
"visyn_scripts": "^8.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/plugin-transform-typescript": "7.17.12",
"cypress": "^13.0.0"
},
"resolutions": {
"@types/react": "~18.2.0",
"@types/react-dom": "~18.2.0",
"react": "~18.2.0",
"react-dom": "~18.2.0"
},
"visyn": {
"entries": {
"app": {
"js": "src/demo/index.initialize.tsx",
"html": "index.html",
"template": "src/demo/index.template.ejs",
"chunkName": "app",
"excludeChunks": []
}
}
},
"packageManager": "[email protected]"
}