forked from mpayetta/node-es6-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
48
49
50
51
{
"name": "node-es6-api",
"version": "1.0.0",
"description": "A node.js RESTful API built with ES6",
"main": "index.js",
"scripts": {
"test": "npm test"
},
"author": "Mauricio Payetta <[email protected]> (http://www.mauriciopayetta.com)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/mpayetta/node-es6-rest-api.git"
},
"dependencies": {
"async": "^2.0.1",
"bcrypt": "^0.8.7",
"body-parser": "^1.15.2",
"express": "^4.13.4",
"express-jwt": "^3.4.0",
"express-validation": "^0.4.5",
"joi": "^7.3.0",
"jsonwebtoken": "^7.1.6",
"kerberos": "0.0.21",
"mongoose": "^4.3.7"
},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"chai": "^3.5.0",
"del": "^2.2.1",
"gulp": "^3.9.1",
"gulp-apidoc": "^0.2.4",
"gulp-babel": "^6.1.2",
"gulp-env": "^0.4.0",
"gulp-load-plugins": "^1.2.4",
"gulp-mocha": "^2.2.0",
"gulp-nodemon": "^2.1.0",
"gulp-plumber": "^1.1.0",
"http-status": "^0.2.3",
"mocha": "^2.5.3",
"run-sequence": "^1.2.2",
"sinon": "^1.17.5",
"sinon-as-promised": "^3.0.1",
"sinon-mongoose": "^1.2.1",
"supertest": "^1.2.0",
"supertest-as-promised": "^2.0.2"
}
}