-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1003 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1003 Bytes
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
{
"name": "end-project",
"version": "1.0.0",
"description": "Web about projects collabortive",
"main": "index.js",
"scripts": {
"prestart": "npm install && bower install",
"start": "node server/app.js",
"dev": "nodemon server/app.js",
"build:scss": "node-sass src/scss/styles.scss public/css/styles.css",
"build:scss:watch": "node-sass src/scss/styles.scss public/css/styles.css --watch"
},
"author": [
"Marc Vergara <marc.vergara.f@gmail.com>"
],
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.2",
"bower": "^1.8.0",
"cloudinary": "^1.9.0",
"del": "^3.0.0",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"jsonwebtoken": "^7.4.3",
"mongoose": "^4.11.9",
"multer": "^1.3.0",
"node-sass": "^4.5.3",
"nodemailer": "^4.1.0",
"passport": "^0.4.0",
"passport-jwt": "^3.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.2.1"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}