-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
88 lines (88 loc) · 2.54 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
{
"name": "seatcamp",
"version": "1.1.0",
"description": "Web-based video chat with friends!",
"engines": {
"node": ">=18.0.0"
},
"main": "index.js",
"scripts": {
"autotest": "mocha --watch -R spec --require @babel/register --recursive test/",
"lint": "eslint --ext .js ./ && echo Hooray || echo Please fix",
"lintfix": "eslint --fix --ext .js ./ && echo Hooray || echo Please fix",
"prepublishOnly": "npm run test",
"start": "node index.js",
"test": "mocha -R spec --require @babel/register --recursive test/"
},
"repository": {
"type": "git",
"url": "https://github.com/tec27/seatcamp"
},
"keywords": [
"webrtc",
"video",
"chat"
],
"author": "Travis Collins <[email protected]> (http://tec27.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tec27/seatcamp/issues"
},
"homepage": "https://github.com/tec27/seatcamp",
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/register": "^7.16.0",
"@babel/runtime": "^7.16.3",
"animated_gif": "^1.0.2",
"autoprefixer": "^10.4.0",
"babel-loader": "^9.1.0",
"compression": "^1.7.4",
"concat-stream": "^2.0.0",
"cookie-parser": "^1.4.7",
"core-js": "^3.19.1",
"cuid": "^2.1.8",
"data-uri-to-blob": "0.0.4",
"data-uri-to-buffer": "^4.0.0",
"dotenv": "^16.0.3",
"express": "^5.0.1",
"html-loader": "^4.2.0",
"lit": "^2.0.2",
"multer": "^1.4.5-lts.1",
"postcss": "^8.4.31",
"prepare-response": "^2.0.0",
"pug": "^3.0.3",
"rimraf": "^3.0.2",
"serve-static": "^2.1.0",
"sha1": "^1.1.0",
"socket.io": "^4.8.0",
"socket.io-client": "^4.7.5",
"thenify": "^3.3.1",
"tokenthrottle": "^1.1.0",
"twitter-text": "^3.1.0",
"webpack": "^5.94.0",
"workbox-cacheable-response": "^6.3.0",
"workbox-expiration": "^6.3.0",
"workbox-google-analytics": "^6.3.0",
"workbox-precaching": "^6.3.0",
"workbox-routing": "^6.3.0",
"workbox-strategies": "^6.3.0",
"workbox-webpack-plugin": "^6.5.4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"chai": "^4.3.4",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.8.2",
"mocha-eslint": "^7.0.0",
"prettier": "^2.4.1",
"proxyquire": "^2.1.3",
"regenerator-runtime": "^0.13.9",
"stream-spigot": "^3.0.5",
"webpack-dev-middleware": "^6.1.2"
}
}