-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "recipe-api-gateway",
"version": "1.0.0",
"description": "api gateway for recipe front-end app",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:dev": "nodemon index.js",
"test": "echo \"Warning: no test specified\" && exit 0",
"lint": "eslint . src config.js index.js --max-warnings 0",
"format": "prettier --check \"**/*.*\"",
"pre-push": "npm run lint && npm run format && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/nkas17/recipe-api-gateway"
},
"author": "nathanmweller",
"license": "MIT",
"dependencies": {
"basic-auth": "2.0.1",
"body-parser": "1.20.2",
"cookie-parser": "1.4.6",
"dotenv": "16.0.3",
"express": "4.18.2",
"jsonwebtoken": "9.0.0",
"mongoose": "7.1.1",
"morgan": "1.10.0",
"request": "2.88.2",
"request-promise": "4.2.6"
},
"devDependencies": {
"eslint": "8.40.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"nodemon": "2.0.22",
"prettier": "2.8.8"
}
}