forked from SimplilearnDevOpsOfficial/DockerizeJenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 914 Bytes
/
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
{
"name": "microservices-nodejs-handlebars-frontend",
"version": "1.0.0",
"description": "A Front-end service with node.js and handlebars for microservice example",
"main": "server.js",
"scripts": {
"start": "node ./src/server.js",
"dev": "nodemon ./src/server.js",
"test": "mocha -R spec src/**/*.spec.js",
"bowerInstall": "bower install",
"bowerInstallDocker": "bower install --allow-root"
},
"keywords": [
"node.js",
"handlebars",
"microservices",
"express",
"Front-end"
],
"author": "Gustavo Apolinario <[email protected]>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.0",
"express": "^4.15.4",
"express-handlebars": "^3.0.0",
"handlebars-helpers": "^0.10.0",
"request": "^2.81.0"
},
"devDependencies": {
"bower": "^1.8.4",
"mocha": "^5.2.0",
"nock": "^9.0.14",
"nodemon": "^1.12.0"
}
}