forked from opentok/accelerator-sample-apps-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.81 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
36
37
38
{
"name": "vanilla-js-sample-app",
"version": "1.0.0",
"description": "OpenTok Accelerator Core Vanilla JS Sample Application",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"cp-annotation": "ncp node_modules/opentok-annotation/dist/opentok-annotation.js public/js/components/opentok-annotation.js",
"cp-archiving": "ncp node_modules/opentok-archiving/dist/opentok-archiving.js public/js/components/opentok-archiving.js",
"cp-screen-sharing": "ncp node_modules/opentok-screen-sharing/dist/opentok-screen-sharing.js public/js/components/opentok-screen-sharing.js",
"cp-text-chat": "ncp node_modules/opentok-text-chat/dist/opentok-text-chat.js public/js/components/opentok-text-chat.js",
"cp-logging": "ncp node_modules/opentok-solutions-logging/dist/opentok-solutions-logging.js public/js/components/opentok-solutions-logging.js",
"cp-core": "ncp node_modules/opentok-accelerator-core/browser/opentok-acc-core.js public/js/components/opentok-acc-core.js",
"build": "mkdirp public/js/components && npm run cp-annotation && npm run cp-archiving && npm run cp-screen-sharing && npm run cp-text-chat && npm run cp-logging && npm run cp-core"
},
"author": "adrice727@gmail.com",
"license": "MIT",
"dependencies": {
"body-parser": "^1.16.0",
"express": "^4.14.1",
"opentok-accelerator-core": ">=2.0.0",
"opentok-annotation": "*",
"opentok-archiving": "*",
"opentok-screen-sharing": "*",
"opentok-solutions-css": "*",
"opentok-text-chat": "*"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0"
}
}