-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
41 lines (41 loc) · 1.2 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
{
"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 --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.0",
"body-parser": "1.19.0",
"express": "4.17.1",
"jsonwebtoken": "8.5.1"
},
"devDependencies": {
"@babel/core": "7.6.2",
"@babel/plugin-transform-modules-commonjs": "7.6.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.9.0",
"docdash": "1.1.1",
"eslint": "6.4.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"gh-pages": "2.1.1",
"jest": "24.9.0",
"jsdoc": "3.6.3",
"jsdoc-http-plugin": "0.3.1",
"node-fetch": "2.6.1",
"tree-kill": "1.2.2"
}
}