forked from sfeir-open-source/talk-control
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.92 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 4.92 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "talkcontrol",
"version": "0.4.1",
"main": "index.js",
"scripts": {
"create-tunnels": "node src/environment/create-tunnels",
"get-started": "node src/environment/get-started",
"start": "npx npm-run-all --parallel create-tunnels tc-server tc-slave tc-showcase start-master-after-server when-master-is-started",
"start-master-after-server": "wait-on tcp:3001 && wait-on tcp:3002 && npm run tc-master",
"when-master-is-started": "wait-on tcp:3000 && npm run get-started",
"build": "npx npm-run-all --parallel build-*",
"test": "npx mocha",
"coverage": "npx nyc npm test",
"lint": "eslint --fix . && echo 'Lint complete.'",
"commit": "npx git-cz",
"tc-showcase": "npx http-server showcase -s -p 3002",
"tc-master": "npx parcel src/client/talk-control-master/index.html --out-dir ./dist/client/master --port 3000",
"tc-slave": "npx parcel watch src/client/talk-control-slave/index.js --out-dir showcase/resources/slave",
"tc-server": "npx nodemon --exec babel-node src/server/index.js",
"build-slave": "npx parcel build src/client/talk-control-slave/index.js --no-source-maps --out-dir ./dist/client/slave --target browser",
"build-master": "npx parcel build src/client/talk-control-master/index.html --no-source-maps --out-dir ./dist/client/master --target browser",
"build-server": "npx parcel build src/server/index.js --no-source-maps --out-dir ./dist/server --target node",
"docs:dev": "vuepress dev docs-sources",
"docs:build": "npm run jsdoc:build && vuepress build docs-sources --dest docs-dist",
"jsdoc:build": "vuepress-jsdoc --source ./src --dist ./docs-sources/developers/code --folder parts --title JsDoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TalkControl/talk-control.git"
},
"contributors": [
"Gildas Morel des Vallons <gildas2k@gmail.com>",
"Jean-François Garreau <jean.francois.garreau@gmail.com>",
"Tristan Elain <elain.t@sfeir.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TalkControl/TalkControl/issues"
},
"homepage": "https://github.com/TalkControl/TalkControl#readme",
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/node": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.6.2",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^8.3.4",
"@granite-elements/granite-lit-bulma": "^0.7.5-0",
"@vue/component-compiler-utils": "^3.1.2",
"babel-plugin-module-resolver": "^3.2.0",
"chai": "^4.2.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsdoc": "^15.12.2",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-prettier": "^3.1.4",
"esm": "^3.2.25",
"husky": "^3.1.0",
"jsdom": "15.2.0",
"jsdom-global": "3.0.2",
"lit-element": "^2.3.1",
"mocha": "^8.0.1",
"nodemon": "^1.19.4",
"nyc": "^15.1.0",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"sinon": "^7.5.0",
"vuepress": "^1.5.2",
"vuepress-jsdoc": "^2.1.1"
},
"directories": {
"test": "test"
},
"nyc": {
"include": [
"test/**/*.js",
"src/**/*.js"
],
"require": [
"@babel/register"
],
"reporter": [
"text",
"html"
],
"all": true
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.1",
"@webcomponents/webcomponentsjs": "^2.4.3",
"bulma": "^0.8.2",
"colors": "^1.4.0",
"express": "^4.17.1",
"http-server": "^0.12.3",
"module-alias": "^2.2.2",
"ngrok": "^3.2.7",
"npm-run-all": "^4.1.5",
"qrcode": "^1.4.4",
"query-selector-shadow-dom": "^0.3.4",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"uws": "^10.148.2",
"wait-on": "^4.0.2"
},
"_moduleAliases": {
"@src": "src",
"@event-bus": "src/common/event-bus",
"@helpers": "src/common/helpers",
"@client": "src/client",
"@server": "src/server",
"@config": "config"
},
"browserslist": [
"Chrome > 50"
],
"browser": {
"socket.io": false
},
"nodemonConfig": {
"ignore": [
"dist/*",
"test/*",
"showcase/*",
"src/client/*"
]
}
}