-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.06 KB
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
{
"name": "msn-api",
"version": "1.0.0",
"description": "API para controle de chat em tempo real",
"main": "./src/server.ts",
"scripts": {
"test": "jest --coverage --watchAll",
"dev": "nodemon ./src/server.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/United-Devs/msn-api.git"
},
"author": "Clayton Rafael",
"license": "ISC",
"bugs": {
"url": "https://github.com/United-Devs/msn-api/issues"
},
"homepage": "https://github.com/United-Devs/msn-api#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"socket.io": "^4.5.4"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/jest": "^29.2.5",
"@types/socket.io": "^3.0.2",
"@types/socket.io-client": "^3.0.0",
"@types/supertest": "^2.0.12",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"socket.io-client": "^4.5.4",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
}
}