forked from Laboratoria/LIM013-fe-burger-queen-api
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.89 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
49
{
"name": "burger-queen-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": ">=10"
},
"scripts": {
"pretest": "eslint .",
"start": "node index.js",
"test:e2e": "jest --verbose --forceExit --testPathPattern e2e/ --globalSetup ./e2e/globalSetup --globalTeardown ./e2e/globalTeardown --runInBand",
"test:users": "jest --verbose --testPathPattern e2e/users.spec.js --globalSetup ./e2e/globalSetup --globalTeardown ./e2e/globalTeardown --runInBand",
"test:auth": "jest --verbose --testPathPattern e2e/auth.spec.js --globalSetup ./e2e/globalSetup --globalTeardown ./e2e/globalTeardown --runInBand",
"test:orders": "jest --verbose --testPathPattern e2e/orders.spec.js --globalSetup ./e2e/globalSetup --globalTeardown ./e2e/globalTeardown --runInBand",
"test:products": "jest --verbose --testPathPattern e2e/products.spec.js --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",
"dev": "nodemon index.js"
},
"dependencies": {
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"is-number": "^7.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql": "^2.18.1"
},
"devDependencies": {
"docdash": "^1.2.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"gh-pages": "^3.1.0",
"jest": "^26.6.1",
"jsdoc": "^3.6.6",
"jsdoc-http-plugin": "^0.3.2",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.6",
"tree-kill": "^1.2.2"
}
}