-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.48 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
{
"name": "tdp_publicdb",
"description": "",
"version": "15.0.1",
"author": {
"name": "The Caleydo Team",
"email": "[email protected]",
"url": "https://caleydo.org"
},
"license": "BSD-3-Clause",
"homepage": "https://ordino.caleydoapp.org",
"bugs": {
"url": "https://github.com/caleydo/tdp_publicdb/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/caleydo/tdp_publicdb.git"
},
"files": [
"src",
"dist",
"tdp_publicdb",
"requirements.txt",
"requirements_dev.txt"
],
"scripts": {
"all": "npm run lint:fix && npm run test && npm run build && npm run dist",
"build": "npm run clean && npm run compile && npm run copy",
"clean": "rimraf 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": "rimraf node_modules",
"predist": "npm run lint && npm run test && npm run build",
"dist": "mkdir lib && cd dist && tar cvzf ../lib/tdp_publicdb.tar.gz *",
"docs": "visyn_scripts docs",
"lint:fix": "visyn_scripts lint --fix",
"lint": "visyn_scripts lint",
"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"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"npm": ">=8",
"node": ">=16"
},
"devDependencies": {
"@types/react-select": "^4.0.13"
},
"dependencies": {
"jquery-ui": "1.12.1",
"jstat": "^1.9.4",
"react-highlight-words": "^0.17.0",
"react-select": "^4.1.0",
"react-select-async-paginate": "^0.5.3",
"react-select-event": "^5.5.1",
"react-virtualized": "^9.22.3",
"tdp_core": "^23.0.2",
"visyn_scripts": "^7.0.1"
},
"resolutions": {
"@types/react": "~18.2.0",
"@types/react-dom": "~18.2.0",
"react": "~18.2.0",
"react-dom": "~18.2.0"
},
"optionalDependencies": {
"ordino": "git+ssh://[email protected]:Caleydo/ordino#semver:^15.0.1"
},
"visyn": {
"entries": {
"app": "./src/index.ts"
}
},
"packageManager": "[email protected]"
}