-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"license": "MIT",
"scripts": {
"test": "semistandard && nyc --reporter=lcov mocha tests/*",
"lint": "semistandard --fix",
"start": "node server.js",
"coverage": "codecov",
"devStart": "nodemon server.js"
},
"dependencies": {
"@sendgrid/mail": "^7.4.0",
"aws-sdk": "^2.804.0",
"bcrypt": "^5.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"csv-writer": "^1.6.0",
"dotenv": "^8.2.0",
"excel4node": "^1.7.2",
"express": "^4.17.1",
"express-rate-limit": "^5.2.3",
"express-validator": "^6.7.0",
"firebase": "^8.1.1",
"firebase-admin": "^9.4.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"read-excel-file": "^4.1.0",
"sequelize": "^6.3.5",
"uuid4": "^2.0.2",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"codecov": "^3.8.1",
"express-swagger-generator": "^1.1.17",
"mocha": "^7.2.0",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"semistandard": "^14.2.3",
"standard": "^16.0.3"
}
}