-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 822 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 822 Bytes
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
{
"name": "fileserver",
"version": "1.0.0",
"description": "",
"main": "main.ts",
"scripts": {
"start": "node main.js",
"tscwatch": "tsc --watch",
"serve": "cd frontend & ng serve --host=0.0.0.0"
},
"author": "Marcos Rodríguez Yélamo <marcosylrg@gmail.com>",
"license": "MIT",
"dependencies": {
"chokidar": "^3.5.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-socket.io-session": "^1.3.5",
"formidable": "^2.0.1",
"socket.io": "^4.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/express-socket.io-session": "^1.3.6",
"@types/formidable": "^2.0.0",
"@types/node": "^16.11.10",
"@types/socket.io": "^2.1.13"
}
}