-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
34 lines (34 loc) · 915 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
{
"name": "foodfy",
"version": "1.0.0",
"description": "aplicação web completa de gerenciamento de receitas.",
"main": "server.js",
"author": "Rafael Martins",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/martins-rafael/foodfy"
},
"scripts": {
"start": "npm-run-all -p nodemon browsersync",
"nodemon": "nodemon src/server.js",
"browsersync": "browser-sync start --proxy http://localhost:5000 --files 'public, src/app/views'"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-pg-simple": "^6.2.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"faker": "^5.1.0",
"method-override": "^3.0.0",
"multer": "^1.4.2",
"nodemailer": "^6.4.16",
"nunjucks": "^3.2.2",
"pg": "^8.3.3"
},
"devDependencies": {
"browser-sync": "^2.26.12",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5"
}
}