-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.5 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
{
"name": "terra-incognita",
"version": "1.0.0",
"description": "A sort of luminous, geometric, incandescent immensity.",
"type": "module",
"scripts": {
"authenticate": "cd api && npm run authenticate",
"build:api": "cd api && npm run build",
"build:app": "cd app && npm run build",
"build": "npm run build:api && npm run build:app",
"clean:api": "cd api && npm run clean",
"clean:app": "cd app && npm run clean",
"clean": "npm run clean:api && npm run clean:app",
"clean:app:all": "cd app && npm run clean:all",
"clean:all": "npm run clean:api && npm run clean:app:all",
"scrape": "cd api && npm run scrape",
"start:api": "cd api && npm run start",
"start:app": "cd app && npm run start",
"start:app:offline": "cd app && npm run start:offline",
"start": "concurrently -k -p \"[{name}]\" -c \"cyan.bold,green.bold\" \"npm:start:api\" \"npm:start:app\"",
"start:offline": "concurrently -k -p \"[{name}]\" -c \"cyan.bold,green.bold\" \"npm:start:api\" \"npm:start:app:offline\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuibonobo/terra-incognita.git"
},
"keywords": [
"art",
"philosophy",
"landscape"
],
"author": "Jen Garcia <jen@haverstack.com> (https://haverstack.com/)",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/cuibonobo/terra-incognita/issues"
},
"homepage": "https://github.com/cuibonobo/terra-incognita#readme",
"devDependencies": {
"concurrently": "^7.0.0"
}
}