-
Notifications
You must be signed in to change notification settings - Fork 313
/
Copy pathpackage.json
34 lines (34 loc) · 833 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
{
"name": "node-todo-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"
},
"keywords": [
"node.js",
"handlebars",
"microservices",
"express",
"Front-end"
],
"author": "Gustavo Apolinario <[email protected]>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"bootstrap": "^4.2.1",
"express": "^4.16.4",
"express-handlebars": "^3.0.0",
"font-awesome": "^4.7.0",
"handlebars-helpers": "^0.10.0",
"request": "^2.88.0"
},
"devDependencies": {
"mocha": "^5.2.0",
"nock": "^10.0.4",
"nodemon": "^1.18.9"
}
}