-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 978 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 978 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "hoptimumapi",
"version": "1.0.0",
"description": "Aplicação de sistemas integrados para redes de hotelaria",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "nodemon server.js",
"smoke:startup": "node scripts/smokeStartup.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Esphios/HOptimumAPI.git"
},
"keywords": [
"hotel",
"rest",
"api"
],
"author": "Eduardo Lima",
"license": "ISC",
"bugs": {
"url": "https://github.com/Esphios/HOptimumAPI/issues"
},
"homepage": "https://github.com/Esphios/HOptimumAPI#readme",
"overrides": {
"braces": "^3.0.3",
"picomatch": "^2.3.2"
},
"dependencies": {
"dotenv": "^16.0.1",
"express": "^4.21.2",
"mongoose": "^6.13.8",
"uuid": "^9.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"eslint": "^10.1.0",
"globals": "^17.4.0",
"nodemon": "^3.1.14"
}
}