-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.21 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
42
43
44
45
46
47
48
49
{
"name": "booklist-express-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon server.js",
"test": "mocha",
"cover": "nodemon --exec nyc --reporter=lcov --reporter=text-summary npm run mocha-exit0",
"heroku": "node index.js",
"travis": "npm run mocha"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"cloudinary": "^1.32.0",
"cors": "^2.8.5",
"date-fns": "^2.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-jwt-authz": "^2.4.1",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"knex": "^2.4.0",
"morgan": "^1.10.0",
"pg": "^8.13.3",
"pg-types": "^4.0.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"chai": "^4.3.3",
"chai-http": "^4.3.0",
"colors": "^1.4.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.1",
"nodemon": "^2.0.7",
"nyc": "^15.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/FreeCodeCamp-SLC/booklist-express-api"
}
}