-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 891 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 891 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
28
29
{
"name": "masterclass",
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": "10.15.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devpointlabs/masterclass.git"
},
"author": "Patrick Lamoureux <patrick@blackcedar.com>",
"license": "MIT",
"scripts": {
"build": "cd client && npm install --only=dev && npm install && npm run build && cd ..",
"deploy": "cp -a client/build/. public/",
"heroku-postbuild": "npm run build && npm run deploy && echo 'Client Built'"
},
"description": "This README would normally document whatever steps are necessary to get the application up and running.",
"bugs": {
"url": "https://github.com/devpointlabs/masterclass/issues"
},
"homepage": "https://github.com/devpointlabs/masterclass#readme",
"directories": {
"lib": "lib",
"test": "test"
},
"keywords": []
}