-
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) · 859 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 859 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
35
36
37
38
39
{
"name": "atl-api",
"version": "1.0.0",
"description": "Advanced TODO List - API module",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.js --watch"
},
"keywords": [
"todo",
"list",
"todo",
"node",
"nodejs",
"api"
],
"author": "Nando Salles",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"fs": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.2",
"mongoose-autopopulate": "^0.14.0",
"nodemailer": "^6.6.2",
"nodemailer-express-handlebars": "^4.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.4",
"nodemon": "^2.0.12"
}
}