forked from GDGVIT/pipo-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·50 lines (50 loc) · 1.37 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
47
48
49
50
{
"license": "MIT",
"scripts": {
"lint": "npx standard --fix",
"test": "nyc --reporter=lcov mocha tests/*",
"start": "node server.js",
"coverage": "codecov",
"devStart": "nodemon server"
},
"dependencies": {
"cloudinary": "^1.25.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"express-validator": "^6.10.0",
"firebase": "^8.2.9",
"firebase-admin": "^9.5.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.15",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.5.0",
"socket.io": "^4.0.1",
"unique-names-generator": "^4.5.0",
"unique-username-generator": "^1.0.1",
"uniquechars": "^1.1.5",
"uuid4": "^2.0.2",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"codecov": "^3.7.1",
"husky": "^4.3.8",
"mocha": "^7.1.2",
"nodemon": "^2.0.3",
"nyc": "^15.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && git add .",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}