-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1010 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1010 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
40
{
"name": "BestFriendsReminders",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/bestfriendreminders-pt-042219/Back-end.git",
"author": "Leila <nb.leila10@gmail.com>",
"license": "MIT",
"scripts": {
"server": "nodemon index.js",
"test": "cross-env DB_ENV=testing jest --watch --verbose",
"start": "node index.js"
},
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"cross-env": "^5.2.0",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"supertest": "^4.0.2"
},
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"helmet": "^3.16.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.0",
"morgan": "^1.9.1",
"newrelic": "^5.7.0",
"node-schedule": "^1.3.2",
"nodemailer": "^6.1.1",
"nodemailer-sendgrid-transport": "^0.2.0",
"pg": "^7.10.0",
"sendgrid": "^5.2.3",
"sqlite3": "^4.0.6"
}
}