-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 865 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
{
"name": "sigame-server",
"version": "1.0.0",
"description": "Sigame server to play with friends",
"main": "server.ts",
"scripts": {
"start": "tsc && node dist/server.js",
"dev": "npx nodemon server.ts"
},
"author": "Denys Kharkov",
"license": "MIT",
"engines": {
"node": ">=16.x"
},
"dependencies": {
"adm-zip": "^0.5.10",
"express": "^4.18.2",
"fast-xml-parser": "^4.2.2",
"get-audio-duration": "^3.1.1",
"get-video-duration": "^4.1.0",
"multer": "^1.4.5-lts.1",
"socket.io": "^4.6.1"
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/express": "^4.17.17",
"@types/multer": "^1.4.7",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"eslint": "^8.40.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}