forked from namz11/stevens-lost-found
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "stevens-lost-found",
"version": "1.0.0",
"description": "This project is part of CS-546 coursework at Stevens for Fall 2022.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"seed": "node seed.js",
"devStart": "nodemon app.js",
"setup": "mkdir -p uploads",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/namz11/stevens-lost-found.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/namz11/stevens-lost-found/issues"
},
"homepage": "https://github.com/namz11/stevens-lost-found#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"express": "^4.18.2",
"express-handlebars": "^6.0.6",
"express-session": "^1.17.3",
"js-levenshtein": "^1.1.6",
"lodash": "^4.17.21",
"mongodb": "^4.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.8.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"xss": "^1.0.14"
},
"devDependencies": {
"husky": "^7.0.0",
"lint-staged": "^13.0.4",
"nodemon": "^2.0.20",
"prettier": "2.8.0"
},
"lint-staged": {
"*.{js,css,md,html,json}": [
"prettier --write"
]
}
}