-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.24 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.24 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
{
"name": "task-trail-nodejs",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon -r dotenv/config ./src/server.js",
"start": "node ./src/server.js"
},
"keywords": [
"Node.js",
"Express.js",
"Sequelize",
"SQLite",
"Passport"
],
"author": "Mohammad Qandeel",
"license": "ISC",
"description": "The Task Trail App API is a backend service built using Node.js, Express.js, Sequelize, and SQLite. It is designed to manage tasks efficiently, providing a robust and scalable solution for task management applications. This API serves as the backbone for the Task Trail App, facilitating operations such as creating, reading, updating, and deleting tasks.",
"dependencies": {
"bcrypt": "^5.1.1",
"connect-sqlite3": "^0.9.15",
"cookie-parser": "^1.4.6",
"express": "^4.19.2",
"express-session": "^1.18.0",
"express-validator": "^7.2.0",
"http-status-codes": "^2.3.0",
"morgan": "^1.10.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"sequelize": "^6.37.3",
"sqlite3": "^5.1.7",
"winston": "^3.14.1"
},
"devDependencies": {
"dotenv": "^16.4.5",
"nodemon": "^3.1.4"
}
}