-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "foodfy",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node src/server.js",
"dev": "npm-run-all -p nodemon browsersync",
"nodemon": "nodemon src/server.js",
"browsersync": "browser-sync start --proxy http://localhost:3333 --files 'src/app/views' 'public'"
},
"nodemonConfig": {
"ignore": [
"public"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/victorbadaro/foodfy.git"
},
"keywords": [],
"author": "Victor Badaró",
"license": "ISC",
"bugs": {
"url": "https://github.com/victorbadaro/foodfy/issues"
},
"homepage": "https://github.com/victorbadaro/foodfy#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-pg-simple": "^6.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"method-override": "^3.0.0",
"multer": "^1.4.2",
"nodemailer": "^6.6.1",
"nunjucks": "^3.2.1",
"pg": "^8.0.3"
},
"devDependencies": {
"browser-sync": "^2.26.14",
"faker": "^5.1.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5"
}
}