-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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": "express-app",
"version": "1.0.0",
"description": "An express restful api with mongo in es6",
"scripts": {
"test": "./node_modules/.bin/mocha --ui bdd --reporter spec --colors --compilers js:babel-core/register Tests/ --recursive",
"start": "gulp serve"
},
"keywords": [
"Express",
"Mongo",
"Es6",
"Restful"
],
"author": "Gideon Aduku",
"license": "ISC",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"gulp-mocha": "^4.3.1",
"http-status": "^1.0.1",
"joi": "^10.4.1",
"mocha": "^3.3.0",
"mongoose": "^4.9.6",
"nodemon": "^1.11.0",
"should": "^11.2.1",
"sinon": "^2.1.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"del": "^2.2.2",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-env": "^0.4.0",
"gulp-load-plugins": "^1.2.0",
"gulp-newer": "^1.1.0",
"gulp-nodemon": "^2.0.6",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"run-sequence": "^1.1.5",
"supertest": "^3.0.0"
}
}