-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (36 loc) · 1.16 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
{
"name": "@flan/monorepo",
"description": "Disaggregated data on bilateral trade flows analysis using Golem.",
"version": "0.0.1",
"keywords": [
"golem",
"flow",
"analysis"
],
"repository": {
"type" : "git",
"url" : "https://github.com/nestorbonilla/flan"
},
"author": {
"name" : "Nestor Bonilla"
},
"license": "LGPL-3.0",
"private": true,
"scripts": {
"react-app:build": "yarn workspace @flan/flan-app build --max-old-space-size=12288",
"react-app:eject": "yarn workspace @flan/flan-app eject",
"react-app:start": "yarn workspace @flan/flan-app start",
"react-app:test": "yarn workspace @flan/flan-app test",
"build": "yarn workspace @flan/flan-app build --max-old-space-size=12288",
"start": "yarn workspace @flan/flan-app start",
"surge": "yarn workspace @flan/flan-app surge",
"golem": "yarn workspace @flan/flan-api watch",
"golem-local": "node ./packages/flan-api/local.js",
"golem-test": "node ./packages/flan-api/test.js"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}