-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "rest_api_backend",
"version": "0.0.1",
"description": "",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon -e js,json",
"build": "tsc",
"build-dev": "tsc --w",
"start": "node dist/index.js"
},
"author": "Antonio Manuel Rebollar Márquez https://github.com/Trino11",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/node": "^20.2.5",
"@types/socket.io": "^3.0.2",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.1",
"@types/yamljs": "^0.2.31",
"nodemon": "^2.0.22",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mongodb": "^5.5.0",
"socket.io": "^4.6.2",
"swagger-ui-express": "^4.6.3",
"uuid": "^9.0.0",
"yamljs": "^0.3.0"
}
}