-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.38 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
{
"name": "omnipresent",
"version": "1.0.0",
"description": "Omnipresent presentations",
"scripts": {
"build:apps": "run-s build:client build:producer build:slides",
"build:core": "npm --prefix ./packages/core run build",
"build:client": "npm --prefix ./packages/client run build",
"build:producer": "npm --prefix ./packages/producer run build",
"build:slides": "npm --prefix ./packages/slides run build",
"dist": "run-s install:core build:core install:apps build:apps docker:build",
"docker:build": "docker build -t \"omni-img\" .",
"docker:run": "docker run -d --restart always --name omni -p 8888:8888 omni-img",
"install:apps": "npm --prefix ./packages/core install && npm --prefix ./packages/client install && npm --prefix ./packages/producer install && npm --prefix ./packages/server install && npm --prefix ./packages/slides install",
"install:core": "npm --prefix ./packages/core install",
"start": "npm --prefix ./packages/server dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Paul Shannon",
"license": "MPL-2.0",
"dependencies": {},
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"typescript": "^3.7.2"
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"parser": "typescript",
"printWidth": 120,
"arrowParens": "always"
}
}