-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
40
41
42
43
{
"type": "module",
"name": "api-gateway",
"version": "1.0.0",
"description": "Express.js app for the USupport api-gateway API service",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"prod": "node server.js",
"swagger": "node swagger.js",
"lint": "eslint . --ext .js"
},
"license": "GPL-3.0",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"fs": "^0.0.1-security",
"helmet": "^6.0.0",
"node-fetch": "^3.2.10",
"socket.io": "^4.5.4",
"swagger-autogen": "^2.22.0",
"swagger-ui-express": "^4.6.0",
"yup": "^0.32.11"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1"
},
"imports": {
"#routes/*": "./routes/*.js",
"#controllers/*": "./controllers/*.js",
"#middlewares/*": "./middlewares/*.js",
"#utils/*": "./utils/*.js",
"#queries/*": "./queries/*.js",
"#schemas/*": "./schemas/*.js",
"#translations/*": "./translations/*.js",
"#sockets/*": "./sockets/*.js"
}
}