-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "rivalsdb",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build-client": "yarn --cwd client install && yarn --cwd client build",
"build-migrations": "yarn --cwd server && yarn --cwd server install && yarn --cwd server db-apply-migrations",
"build-server": "yarn --cwd server install && yarn --cwd server build",
"build": "yarn build-server && yarn build-client && yarn build-migrations",
"heroku-cleanup": "yarn prune-server && yarn prune-client",
"prune-client": "yarn --cwd client install --production",
"prune-server": "yarn --cwd server install --production",
"start": "yarn --cwd server node dist/index.js"
},
"author": "Luiz Socrate <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lsocrate/rivalsdb/issues"
},
"homepage": "https://rivalsdb.app",
"volta": {
"node": "18.7.0",
"yarn": "1.22.19"
},
"engines": {
"node": "18.x",
"yarn": "1.22.x"
},
"private": true,
"workspaces": [
"assets",
"client",
"server",
"packages/*"
]
}