-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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
{
"devDependencies": {
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"node-dev": "^7.2.0",
"prettier": "^2.5.1",
"prettier-plugin-sql": "^0.4.1"
},
"name": "api_base_tools",
"description": "base architecture for API with some useful tools",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"bcrypt": "^5.0.1",
"bunyan": "^1.8.15",
"cors": "^2.8.5",
"debug": "^4.3.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-jsdoc-swagger": "^1.6.7",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.3",
"pug": "^3.0.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "DEBUG=*,-express:*,-body-parser:*,-send* node-dev index.js --no-notify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AgathePons/API_base_tools.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AgathePons/API_base_tools/issues"
},
"homepage": "https://github.com/AgathePons/API_base_tools#readme"
}