-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.03 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
{
"name": "notes-api",
"version": "1.0.0",
"description": "This is a Notes API project that allows users to create, edit and manage notes, as well as create accounts and log in. It was developed as an exam assignment for a back-end fundamentals course.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js",
"start:prod": "NODE_ENV=production nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joakimtrulsson/Notes-api.git"
},
"author": "Joakim Trulsson",
"license": "ISC",
"bugs": {
"url": "https://github.com/joakimtrulsson/Notes-api/issues"
},
"homepage": "https://github.com/joakimtrulsson/Notes-api#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.4",
"morgan": "^1.10.0",
"nodemon": "^2.0.22",
"swagger-ui-express": "^4.6.2",
"validator": "^13.9.0",
"yamljs": "^0.3.0"
}
}