-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.71 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
52
53
54
55
56
57
{
"name": "sample-node-es6-api-vscode-docker",
"version": "1.0",
"description": "Boilerplate project w/ minimal RESTful API using Node.js ES6, express, mongoose, JWT Authentification & setup for VSCode w/ Docker Integration",
"main": "dist/src/server.js",
"scripts": {
"build": "gulp build",
"lint": "gulp lint",
"start": "yarn build && docker-compose run --rm --service-ports super-api",
"test": "yarn build && docker-compose run --rm super-api-test && open coverage/index.html",
"reset": "docker-compose down && docker volume prune"
},
"repository": "https://github.com/SushiFu/sample-node-es6-api-vscode-docker.git",
"author": "Krak",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.0",
"body-parser": "^1.15.2",
"bunyan": "^1.8.5",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"elasticsearch": "^12.1.3",
"express": "^4.14.0",
"express-validation": "^1.0.1",
"got": "^6.7.1",
"helmet": "^3.3.0",
"http-status": "^0.2.3",
"i18n": "^0.8.3",
"joi": "^9.0.4",
"jsonwebtoken": "^7.2.1",
"method-override": "^2.3.7",
"mongoosastic": "^4.2.4",
"mongoose": "^4.7.6",
"mongoose-timestamp": "^0.6.0",
"multer": "^1.2.1",
"passport": "^0.3.2",
"passport-jwt": "^3.0.0",
"response-time": "^2.3.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-env": "^1.1.6",
"chai": "^3.5.0",
"del": "^2.2.2",
"eslint": "^3.13.1",
"gulp": "gulpjs/gulp#4.0",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"gulp-sourcemaps": "^2.4.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"nyc": "^10.1.2",
"pump": "^1.0.2",
"supertest": "^2.0.1"
}
}