forked from alebausa/module2-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 867 Bytes
/
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
{
"name": "myapp",
"version": "0.0.0",
"private": true,
"scripts": {
"seedBrickCategory": "node ./seed/brickcategory",
"seedStorage": "node ./seed/storage",
"dev": "nodemon ./bin/www",
"start": "node ./bin/www"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.1.1",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"brickset": "^0.3.1",
"cloudinary": "^1.30.0",
"connect-mongo": "^4.6.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"express": "~4.16.1",
"express-session": "^1.17.3",
"fileuploader": "^1.2.7",
"hbs": "~4.0.4",
"http-errors": "~1.6.3",
"mongoose": "^6.4.1",
"moongose": "^1.0.0",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0"
},
"devDependencies": {
"nodemon": "^2.0.16"
}
}