forked from Laboratoria/SAP010-burger-queen-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
47
48
{
"name": "burger-queen-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": ">=16.x"
},
"scripts": {
"pretest": "eslint .",
"start": "nodemon index.js",
"test:e2e": "jest --verbose --testPathPattern e2e --globalSetup ./e2e/globalSetup --globalTeardown ./e2e/globalTeardown --runInBand",
"test:unit": "jest --verbose --testPathIgnorePatterns e2e",
"test": "jest --coverage",
"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.1.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.0.0",
"mongoose": "^7.5.1"
},
"devDependencies": {
"docdash": "^1.2.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"esm": "^3.2.25",
"gh-pages": "^3.1.0",
"jest": "^27.5.1",
"jsdoc": "^3.6.6",
"jsdoc-http-plugin": "^0.3.2",
"node-fetch": "^3.1.0",
"nodemon": "^3.0.1",
"tree-kill": "^1.2.2"
},
"bootcamp": {
"createdAt": "2023-07-17T22:44:26.295Z",
"version": "6.1.1",
"commit": "814ef5e88c975a76c86e171d87617588c58eb3e5"
}
}