-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 978 Bytes
/
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
{
"name": "node-task-app",
"version": "1.0.0",
"description": "A simple task manager written with nodejs for learning purposes.\r Includes file uploads, email sending and user profiles.",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest --watch --runInBand",
"ci-test": "jest --runInBand",
"coverage": "jest --runInBand --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/canyener/task-app.git"
},
"keywords": [],
"author": "Can YENER canyener1337@gmail.com",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^7.4.6",
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.6",
"multer": "^1.4.3",
"sharp": "^0.28.3",
"validator": "^13.6.0"
},
"devDependencies": {
"dotenv": "^10.0.0",
"jest": "^27.0.6",
"nodemon": "^2.0.12",
"supertest": "^6.1.6"
}
}