-
Notifications
You must be signed in to change notification settings - Fork 613
/
package.json
43 lines (43 loc) · 873 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
36
37
38
39
40
41
42
43
{
"name": "hello",
"version": "1.0.1",
"description": "A free group video conference app for the web. No sign ups. No downloads.",
"main": "server.js",
"scripts": {
"start": "node ./scripts/pre-start.js && node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"ejs": "^3.1.10",
"express": "^4.19.2",
"socket.io": "^4.7.5",
"vue": "^3.4.31",
"webrtc-adapter": "^9.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"prettier": "3.4.2"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": true,
"overrides": [
{
"files": [
"*.ejs"
],
"options": {
"parser": "html"
}
}
]
}
}