-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "lost-heritage-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start-dev": "nodemon index.js",
"test2": "lint-staged",
"deploy": "heroku builds:create -a lost-heritage",
"test": "echo \"Error: no test specified\" && exit 0",
"build": "echo \"Error: no build specified\" && exit 0"
},
"author": "Rui Lebre",
"license": "GPL-3.0-only",
"dependencies": {
"aws-sdk": "^2.787.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"busboy": "^0.3.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-paginate": "^1.0.2",
"express-rate-limit": "^5.2.3",
"jsonwebtoken": "^8.5.1",
"md5": "^2.3.0",
"mongoose": "^5.10.13",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"multer-sharp-s3": "^0.2.1",
"sharp": "^0.26.2",
"uuid": "^8.3.1"
},
"devDependencies": {
"husky": "=4",
"lint-staged": ">=10",
"nodemon": "^2.0.6",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}