forked from Laboratoria/LIM016-burger-queen-api
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 KB
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
{
"name": "burger-queen-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": "16.14.0"
},
"scripts": {
"start": "node src/index.js",
"test:e2e": "jest --verbose --testPathPattern e2e --globalSetup ./e2e/globalSetup --globalTeardown ./e2e/globalTeardown --runInBand",
"test:unit": "jest --verbose --testPathIgnorePatterns e2e",
"test": "npm run test:e2e && npm run test:unit",
"lint": "eslint .",
"docs:generate": "jsdoc -c jsdoc.conf --readme README-docs.md",
"docs:deploy": "rm -rf docs && npm run docs:generate && gh-pages -d docs"
},
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.1",
"mongoose-paginate-v2": "^1.5.0"
},
"devDependencies": {
"@shelf/jest-mongodb": "^2.2.0",
"docdash": "^1.2.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"gh-pages": "^3.1.0",
"jest": "^27.0.1",
"jsdoc": "^3.6.6",
"jsdoc-http-plugin": "^0.3.2",
"node-fetch": "^3.2.0",
"tree-kill": "^1.2.2"
}
}