-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "foodfy",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "npm-run-all -p nodemon browsersync",
"nodemon": "nodemon server.js",
"browsersync": "browser-sync start --proxy http://localhost:5000 --files 'public, src/app/views"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarioDoncel/LaunchBase.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MarioDoncel/LaunchBase/issues"
},
"homepage": "https://github.com/MarioDoncel/LaunchBase#readme",
"dependencies": {
"aws-sdk": "^2.1062.0",
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"connect-pg-simple": "^6.2.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^14.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"method-override": "^3.0.0",
"multer": "^1.4.2",
"nodemailer": "^6.6.0",
"nodemon": "^2.0.7",
"nunjucks": "^3.2.2",
"pg": "^8.5.1"
},
"devDependencies": {
"browser-sync": "^2.26.14",
"faker": "^5.5.3",
"npm-run-all": "^4.1.5"
}
}