-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 826 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 826 Bytes
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
{
"name": "instead",
"version": "0.1.0",
"engines": {
"node": "14.16.1",
"yarn": "1.22.10"
},
"description": "",
"main": "index.js",
"scripts": {
"start": "node backend/dist/src/server.js",
"build": "cd backend && yarn install && yarn build && yarn migrate-up && cd ../client && yarn install && yarn build",
"install-local": "cd backend && yarn install && yarn migrate up && yarn types && yarn install && cd ../client && yarn install",
"local": "concurrently --kill-others \"cd backend && yarn watch-debug\" \"cd client && yarn start\""
},
"keywords": [],
"author": "Daniel Brauer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/danielbrauer/instead.git"
},
"dependencies": {},
"devDependencies": {
"concurrently": "^5.2.0"
}
}