-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 882 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
{
"name": "servidor-com-salas",
"version": "1.0.0",
"description": "Servidor que organiza clientes em salas que conectam uns com os outros.",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "nodemon index.ts",
"start": "npm run compileTS && node index.js",
"compileTS": "tsc index.ts && tsc routes/router.ts && tsc view/viewIndex.ts && tsc view/room_script.ts",
"compileFront": "tsc view/viewIndex.ts && tsc view/room_script.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2"
},
"dependencies": {
"@types/express": "^4.17.21",
"@types/supertest": "^6.0.2",
"@types/ws": "^8.5.10",
"express": "^4.18.2",
"typescript": "^5.3.3",
"ws": "^8.16.0"
}
}