forked from tishana/daily-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.22 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.22 KB
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": "daily-demos",
"version": "0.1.0",
"description": "Demo projects showcasing usage of daily-js",
"scripts": {
"start": "concurrently npm:index-start npm:static-demos-start npm:react-demo-start",
"dev": "concurrently npm:index-dev npm:static-demos-dev npm:react-demo-dev",
"postinstall": "npm run static-demos-install && npm run react-demo-install",
"index-start": "node index.js",
"index-dev": "nodemon index.js",
"static-demos-start": "cd static-demos && npm run start",
"static-demos-dev": "cd static-demos && npm run dev",
"static-demos-install": "cd static-demos && npm i",
"react-demo-start": "cd react-demo && npm run build && npm run start",
"react-demo-dev": "cd react-demo && npm run dev",
"react-demo-install": "cd react-demo && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daily-co/daily-demos.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/daily-co/daily-demos/issues"
},
"homepage": "https://github.com/daily-co/daily-demos#readme",
"dependencies": {
"concurrently": "^5.1.0",
"express": "^4.17.1",
"http-proxy-middleware": "^1.0.0"
},
"devDependencies": {
"nodemon": "^2.0.2"
}
}