forked from michaelgold/chalktalk-presentations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.05 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
{
"name": "chalktalk-presentations",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"install": "npm run install-app && npm run install-admin && npm run install-chalktalk",
"build": "cd admin && npm run build && cp -r build/* ../middleware/public/",
"start": "concurrently \"cd chalktalk && ./run.linux\" \"cd admin && npm run start\" \"cd middleware && npm run start\"",
"test": "npm run build && npm run test-local",
"install-app": "cd middleware && npm install",
"install-admin": "cd admin && npm install",
"install-chalktalk": "cd chalktalk && cd server && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelgold/chalktalk-presentations"
},
"keywords": [
"chalktalk"
],
"author": "@michaelgold",
"license": "MIT",
"bugs": {
"url": "git+https://github.com/michaelgold/chalktalk-presentations/issues"
},
"homepage": "git+https://github.com/michaelgold/chalktalk-presentations#readme",
"dependencies": {
"concurrently": "^3.5.1"
}
}