forked from iVis-at-Bilkent/pathway-mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 779 Bytes
/
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
{
"private": true,
"workspaces": [
"packages/*"
],
"author": "i-Vis at Bilkent <ivisatbilkent@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/iVis-at-Bilkent/pathway-mapper"
},
"version": "2.3.0",
"license": "AGPL-3.0-only",
"engines": {
"yarn": "1.x",
"node": "15.x"
},
"resolutions": {
"lodash": "^4.17.21"
},
"scripts": {
"build": "yarn buildApp:prod",
"buildApp:dev": "yarn workspace pathway-mapper-standalone build:dev",
"buildApp:prod": "yarn workspace pathway-mapper-standalone build:prod",
"buildLib:dev": "yarn workspace pathway-mapper build:dev",
"buildLib:prod": "yarn workspace pathway-mapper build:prod",
"start": "yarn workspace pathway-mapper-standalone start"
}
}