-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "telemate",
"version": "1.0.0",
"description": "A small-scale messaging application for devs",
"type": "module",
"scripts": {
"dev": "concurrently \"vite build client -w\" \"nodemon server/index.js\"",
"serve": "vite build client && node server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henryhale/telemate.git"
},
"keywords": [],
"author": {
"name": "Henry Hale",
"url": "https://github.com/henryhale"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/henryhale/telemate/issues"
},
"homepage": "https://github.com/henryhale/telemate#readme",
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.1.0",
"vite": "^5.2.10"
},
"dependencies": {
"crypto-js": "^4.2.0",
"express": "^4.19.2",
"helmet": "^7.1.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"toobusy-js": "^0.5.1",
"winbox": "^0.2.82",
"xterminal": "^2.1.9"
},
"engines": {
"node": ">=18",
"pnpm": ">=7"
}
}