-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 952 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 952 Bytes
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
{
"name": "bookend-api",
"version": "1.0.0",
"description": "A RESTful API for managing books and authors with Node.js and MySQL.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx nodemon server.js",
"prod": "NODE_ENV=production nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joakimtrulsson/Bookend-API.git"
},
"author": "Joakim Trulsson",
"license": "ISC",
"bugs": {
"url": "https://github.com/joakimtrulsson/Bookend-API/issues"
},
"homepage": "https://github.com/joakimtrulsson/Bookend-API#readme",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"helmet": "^6.1.5",
"hpp": "^0.2.3",
"morgan": "^1.10.0",
"mysql2": "^3.2.4",
"nodemon": "^2.0.22",
"xss-clean": "^0.1.1"
}
}