-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 829 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 829 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
{
"name": "tv-minder",
"version": "0.0.1",
"description": "TV redminer app",
"repository": {
"type": "git",
"url": "git+https://github.com/trybick/tv-minder.git"
},
"author": "Tim Rybicki",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/trybick/tv-minder/issues"
},
"homepage": "https://github.com/trybick/tv-minder#readme",
"scripts": {
"postinstall": "(cd api && npm install); ([ -d \"front\" ] && cd front && npm install || true);",
"heroku-prebuild": "rm -rf front",
"build": "npm run build --prefix api",
"serve:local": "npm run serve:local --prefix api",
"serve:prod": "npm run serve:prod --prefix api",
"start": "npm start --prefix front",
"start:local": "npm run start:local --prefix front"
},
"dependencies": {},
"devDependencies": {}
}