-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
45 lines (45 loc) · 1.06 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
45
{
"name": "fund-my-laptop",
"version": "1.0.0",
"description": "Fund my laptop",
"main": "server.js",
"scripts": {
"start": "node src/bin/www.js",
"dev": "env NODE_ENV=development nodemon src/bin/www.js",
"test": "env NODE_ENV=test jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.2.0",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.19",
"morgan": "^1.10.0",
"node-forge": "^0.9.1",
"nodemailer": "^6.4.10",
"nodemon": "^2.0.4",
"passport": "^0.4.1",
"passport-twitter": "^1.0.4",
"pm2": "^4.4.0",
"randomstring": "^1.1.5"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.1.5",
"jest": "^26.0.1",
"node-forge": "^0.9.1",
"nodemailer": "^6.4.10",
"nodemon": "^1.19.4",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node"
}
}