-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
153 lines (153 loc) · 5.07 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "talkcontrol",
"version": "0.4.1",
"main": "index.js",
"scripts": {
"clean": "rm -rf .cache dist",
"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-showcase start-controller-after-server when-controller-is-started",
"start-controller-after-server": "wait-on tcp:3001 && wait-on tcp:3002 && npm run tc-controller-and-component",
"when-controller-is-started": "wait-on tcp:3000 && npm run get-started",
"test": "npx mocha",
"coverage": "npx nyc npm test",
"lint": "eslint --fix . --cache",
"commit": "npx git-cz",
"tc-showcase": "npx http-server showcase -s -p 3002",
"tc-controller-and-component": "npx webpack-dev-server --config webpack.config.dev.js",
"tc-server": "npx nodemon --exec \"babel-node --ignore 'nothing'\" src/server/index.js",
"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 <[email protected]>",
"Jean-François Garreau <[email protected]>",
"Julien Tanguy <[email protected]>",
"Tristan Elain <[email protected]>",
"Nicolò <nicosh>",
"Karthik Shetty <karthikshetty03>",
"Luis Contreras <devrasec>"
],
"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.9.0-4",
"@vue/component-compiler-utils": "^3.1.2",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^3.2.0",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.2.1",
"css-loader": "^4.3.0",
"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",
"html-webpack-plugin": "^4.5.0",
"husky": "^3.1.0",
"jsdom": "15.2.0",
"jsdom-global": "3.0.2",
"lit-element": "^2.4.0",
"lit-fontawesome": "0.1.3",
"mini-css-extract-plugin": "^0.11.3",
"mocha": "^8.1.3",
"nodemon": "^1.19.4",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"redux-mock-store": "^1.5.4",
"sinon": "^9.2.2",
"url-loader": "^4.1.0",
"vuepress": "^1.5.2",
"vuepress-jsdoc": "^2.1.1",
"webpack": "^5.0.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"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": {
"@webcomponents/webcomponentsjs": "^2.4.3",
"bulma": "^0.9.0",
"colors": "^1.4.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"http-proxy": "^1.18.1",
"http-server": "^0.12.3",
"module-alias": "^2.2.2",
"ngrok": "^3.2.7",
"node-fetch": "^2.6.1",
"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": {
"@event-bus": "src/common/event-bus",
"@services": "src/common/services",
"@client": "src/client",
"@server": "src/server",
"@config": "config",
"@plugins": "src/plugins"
},
"browserslist": [
"defaults",
"maintained node versions"
],
"browser": {
"socket.io": false
},
"nodemonConfig": {
"ignore": [
"dist/*",
"test/*",
"showcase/*",
"src/client/*"
]
}
}