-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 935 Bytes
/
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": "video-collaboration",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-p \"server:start\" \"client:start\"",
"server:start": "nodenv server/index.js --exec nodemon | pino-colada",
"client:start": "parcel watch client/src/index.html --out-dir client/dist",
"test": "mocha",
"bump-version": "npm version patch"
},
"keywords": [],
"author": "Phil Nash <philnash@twilio.com> (https://philna.sh)",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"express-pino-logger": "^5.0.0",
"normalize.css": "^8.0.1",
"parcel-bundler": "^1.12.4",
"pino": "^6.3.2",
"twilio": "^3.48.0",
"twilio-video": "^2.6.0"
},
"browserslist": [
"since 2017-06"
],
"devDependencies": {
"mocha": "^10.1.0",
"node-env-run": "^3.0.2",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"pino-colada": "^2.0.1"
}
}