-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.2 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
{
"name":"auth_service",
"version":"0.0.2",
"description":"micro-service authentication",
"author":"kymytype <86.poseidon@gmail.com>",
"main":"index.js",
"scripts":{
"start":"node index.js",
"debug":"./node_modules/.bin/nodemon --debug index.js",
"test":"./node_modules/.bin/mocha --reporter spec --compilers js:babel-core/register 'test/test-suite.js'"
},
"dependencies":{
"express":"^4.14.0",
"express-jwt":"^5.1.0",
"jsonwebtoken":"7.1.9",
"passport":"^0.3.2",
"passport-local":"^1.0.0",
"composable-middleware":"^0.3.0",
"mongoose":"^4.6.2",
"bluebird":"^3.4.6",
"morgan":"^1.7.0",
"body-parser":"^1.15.2",
"dotenv":"^2.0.0",
"lodash":"^4.16.2",
"method-override":"^2.3.6",
"errorhandler":"^1.4.3",
"winston":"^2.2.0",
"winston-daily-rotate-file":"^1.3.1",
"babel-core": "^6.17.0",
"babel-eslint": "^7.1.0",
"babel-register": "^6.18.0",
"babel-preset-es2015": "^6.18.0"
},
"devDependencies":{
"mocha":"^3.1.2",
"chai":"^3.5.0",
"chai-as-promised":"^6.0.0",
"nodemon":"^1.11.0",
"sinon":"^1.17.6",
"proxyquire":"^1.7.10",
"chai-http":"^3.0.0",
"sinon-mongoose":"^1.3.0"
}
}