-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
141 lines (141 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "ordino_public",
"displayName": "Ordino",
"description": "",
"version": "15.0.0",
"author": {
"name": "datavisyn",
"email": "[email protected]",
"url": "http://www.datavisyn.io"
},
"license": "MPL",
"homepage": "https://caleydo.org",
"bugs": {
"url": "https://github.com/Caleydo/ordino_public/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Caleydo/ordino_public.git"
},
"engines": {
"npm": ">=8",
"node": ">=16"
},
"private": true,
"main": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": {
"types": [
"./dist/index.d.ts",
"./src/index.ts"
],
"import": [
"./dist/index.js",
"./src/index.ts"
],
"default": [
"./dist/index.js",
"./src/index.ts"
]
},
"./phovea_registry": [
"./dist/phovea_registry.js",
"./src/phovea_registry.ts"
],
"./dist/phovea_registry": [
"./dist/phovea_registry.js",
"./src/phovea_registry.ts"
],
"./src/scss/*": [
"./dist/scss/*",
"./src/scss/*"
],
"./dist/scss/*": [
"./dist/scss/*",
"./src/scss/*"
],
"./package.json": "./package.json"
},
"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/ordino_public.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"
},
"files": [
"src",
"dist"
],
"dependencies": {
"ordino": "git+ssh://[email protected]:Caleydo/ordino#semver:^15.0.0",
"react-router-dom": "^5.2.0",
"visyn_scripts": "^7.0.1"
},
"devDependencies": {
"@types/react-router-dom": "^5.1.7"
},
"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/initialize.app.ts",
"template": "src/app.template.ejs",
"html": "app/index.html",
"chunkName": "app",
"excludeChunks": [
"welcome"
]
},
"welcome": {
"js": "src/initialize.welcome.tsx",
"template": "src/welcome.template.ejs",
"html": "index.html",
"chunkName": "welcome",
"excludeChunks": [
"app"
]
}
},
"registry": {
"exclude": [
"dTiles",
"bob",
[
"datatype",
"(table|matrix|stratification|vector|atom)"
],
[
"clue",
"multiform"
],
[
"tdpView",
"kegg"
]
]
}
},
"packageManager": "[email protected]"
}