-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 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
38
39
40
41
42
43
44
45
46
47
{
"name": "overdb",
"version": "0.1.0",
"author": "Dara Dermody",
"description": "Web application that allows people to easily follow their favourite cast and crew in movies",
"license": "MIT",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently -n client,server -c green,cyan 'yarn workspace @overdb/frontend dev' 'yarn workspace @overdb/backend dev'",
"graphql-type-gen": "yarn workspaces foreach --parallel run graphql-type-gen",
"build": "NODE_ENV=production scripts/build.sh",
"deploy": "scripts/deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daradermody/OverDB.git"
},
"keywords": [
"movies",
"director",
"actor",
"application"
],
"bugs": {
"url": "https://github.com/daradermody/OverDB/issues"
},
"private": true,
"devDependencies": {
"concurrently": "^8.2.2",
"pkg": "^5.8.1"
},
"bin": "build/backend.js",
"pkg": {
"outputPath": "build",
"assets": [
"build/schema.graphql",
"build/static",
"build/xhr-sync-worker.js"
],
"targets": [
"node18-linux-x64"
]
}
}