-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "mean_Project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "npm install",
"postinstall": "bower install",
"build:js": "browserify src/js/app.js > public/app.js",
"build:js:watch": "watchify -t babelify src/js/app.js -d -o public/app.js -v",
"build:scss": "node-sass src/scss/styles.scss public/styles.css",
"build:scss:watch": "node-sass src/scss/styles.scss public/styles.css --watch",
"start": "node index",
"dev": "nodemon index"
},
"keywords": [],
"author": "",
"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.3",
"moment": "^2.18.1",
"mongoose": "^5.7.11",
"multer": "^1.3.0",
"pug": "^2.0.0-rc.1",
"request": "^2.81.0",
"request-promise": "^4.2.1"
},
"devDependencies": {
"angular": "^1.6.4",
"angular-route": "^1.6.4",
"angular-socialshare": "^2.3.8",
"angularjs-gauge": "^2.0.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"ng-file-upload": "^12.2.13",
"node-sass": "^4.5.3",
"nodemon": "^1.11.0",
"watchify": "^3.9.0"
}
}