-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
46
{
"name": "server",
"version": "0.0.0",
"private": true,
"main": "app.js",
"engines": {
"node": "12.17.0"
},
"scripts": {
"dev": "nodemon ./bin/www",
"debug": "nodemon --inspect ./bin/www",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --exit --timeout 30000",
"start": "nodemon app.js"
},
"dependencies": {
"@babel/runtime": "7.0.0-beta.55",
"@sendgrid/mail": "^7.4.2",
"async": "^3.2.0",
"aws-sdk": "^2.861.0",
"bcrypt": "^5.0.1",
"cookie": "^0.4.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"date-fns": "^2.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-errors": "~1.8.0",
"is-empty": "^1.2.0",
"is-svg": "^4.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.19",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemon": "^2.0.6",
"stripe": "^8.138.0",
"unirest": "^0.6.0",
"validator": "^13.5.2"
},
"devDependencies": {
"all-the-cities": "^3.1.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^8.2.1"
}
}