forked from popovicsandras/super-tokens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
{
"name": "microservice",
"version": "1.0.0",
"description": "RESTful Microservice skeleton",
"main": "service.js",
"scripts": {
"start": "export NODE_ENV=production; node app.js",
"serve": "export NODE_ENV=development; nodemon app.js",
"pretest": "jshint --reporter=node_modules/jshint-stylish **/**.js",
"test": "export NODE_ENV=test; mocha 'test/setup.js' 'test/**/**.spec.js'",
"installdb": "export NODE_ENV=production; node install/install.js",
"installtestdb": "export NODE_ENV=test; node install/install.js"
},
"author": "Andras Popovics",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/popovicsandras/microservice.git"
},
"dependencies": {
"body-parser": "^1.14.1",
"config": "^1.16.0",
"cookie-parser": "^1.4.0",
"express": "^4.13.3",
"log4js-config": "^0.1.1",
"mongodb": "^2.0.45",
"monk": "^1.0.1",
"morgan": "^1.6.1",
"swagger-ui": "^2.1.3",
"swagger-ui-middleware": "^1.0.0",
"body-parser": "^1.14.1",
"request": "^2.63.0",
"async": "^1.4.2",
"q": "^1.4.1"
},
"devDependencies": {
"chai": "^3.2.0",
"jshint": "^2.8.0",
"jshint-stylish": "^2.0.1",
"mocha": "^2.3.2",
"mocha-runner": "^1.1.1",
"nodemon": "^1.6.1",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0",
"supertest": "^1.1.0"
}
}