-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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": "MyProject",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "npm-run-all --parallel watch:server watch:front",
"watch:front": "./node_modules/gulp/bin/gulp.js",
"watch:server": "NODE_ENV=development nodemon ./bin/www"
},
"engines": {
"node": ">=8.7.0",
"npm": ">=5.4.2"
},
"author": "Wesley Amaro",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"connect-multiparty": "^2.1.0",
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"express-fileupload": "^0.3.0",
"fs": "0.0.1-security",
"mongoose": "^4.13.0",
"morgan": "^1.9.0",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.2",
"request": "^2.83.0"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"browserify": "^14.5.0",
"del": "^3.0.0",
"express-handlebars": "^3.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-clean-css": "^3.9.0",
"gulp-concat": "^2.6.1",
"gulp-sass": "^3.1.0",
"gulp-sequence": "^0.4.6",
"gulp-uglify": "^3.0.0",
"merge-stream": "^1.0.1",
"watchify": "^3.9.0"
}
}