-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.64 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
{
"name": "Listify",
"version": "1.0.0",
"description": "This repository contains the backend code for a todo list application built using Node.js. The backend exposes a RESTful API for creating, reading, updating, and deleting todo items. It uses a database to store the todo items and has endpoints for managing user accounts and authentication. The code is organized into different modules for handling different aspects of the application, such as the database, the API routes, and the middleware. The repository also includes scripts for setting up the development and production environments and for deploying the code to a server.",
"main": "index.js",
"scripts": {
"test": "set process.env.NODE_ENV=test && jest --watchAll --detectOpenHandles --verbose",
"dev": "set process.env.NODE_ENV=development && nodemon index.js",
"prod": "set process.env.NODE_ENV=production",
"start": "node index.js"
},
"engines": {
"node": "14.18.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aimalexe/Listify.git"
},
"keywords": [],
"author": "Aimal Khan",
"license": "ISC",
"bugs": {
"url": "https://github.com/aimalexe/Listify/issues"
},
"homepage": "https://github.com/aimalexe/Listify#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"compression": "^1.7.4",
"config": "^3.3.8",
"express": "^4.18.2",
"helmet": "^6.0.1",
"joi": "^17.8.3",
"joi-objectid": "^4.0.2",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongoose": "^6.8.3",
"winston": "^3.8.2"
},
"devDependencies": {
"jest": "^29.3.1",
"supertest": "^6.3.3"
}
}