-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.53 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
44
45
46
{
"name": "basic_api",
"version": "0.1.31",
"description": "WEB API",
"main": "./src/bin/init",
"author": "Cristian Murcia, Cris-Mur",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cris-Mur/BasicApi/issues"
},
"homepage": "https://github.com/Cris-Mur/BasicApi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Cris-Mur/BasicApi.git"
},
"keywords": [
"Express",
"HTTP",
"API"
],
"scripts": {
"start": "./src/bin/init",
"dev": "NODE_ENV=development VERBOSE=true COLORED=true node --watch --inspect ./src/bin/init",
"debug": "VERBOSE=true COLORED=true ./bin/init 1>/var/tmp/node_express_api.log 2>/var/tmp/node_express_api.error.log",
"test": "node --test",
"serverless": "SERVERLESS=true node ./src/bin/serverless.js",
"server": "./src/bin/./init 1>/var/log/node_express_api.log 2>/var/log/node_express_api.error.log &"
},
"dependencies": {
"cors": "2.8.5",
"express": "4.19.2",
"swagger-jsdoc": "6.2.8",
"swagger-themes": "1.4.3",
"swagger-ui-express": "5.0.1"
},
"imports": {
"#Utils/logger": "./src/utils/logger/index.js",
"#Utils/boolean": "./src/utils/parsers/boolean/index.js",
"#Utils/csv": "./src/utils/parsers/csv/index.js",
"#Utils/performance": "./src/utils/performance/index.js",
"#Utils/requireUnCached": "./src/utils/require_uncached/index.js",
"#Network": "./src/application/network/index.js",
"#MainRouter": "./src/services/router.js",
"#Application": "./src/application/index.js"
}
}