-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.5 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
58
59
60
61
62
63
64
{
"name": "express4-boilerplate",
"version": "0.1.4",
"private": true,
"description": "Create apps and static sites with Node.js and Express 4",
"main": "app.js",
"scripts": {
"start": "nodemon ./bin/www",
"test": "istanbul cover _mocha test/*.js"
},
"repository": {
"type": "git",
"url": "[email protected]:pinceladasdaweb/nodejs-boilerplate.git"
},
"author": {
"name": "Pedro Rogério",
"email": "[email protected]",
"url": "https://github.com/pinceladasdaweb"
},
"contributors": [
{
"name": "Pedro Rogério",
"email": "[email protected]",
"url": "https://github.com/pinceladasdaweb"
},
{
"name": "William Bruno",
"email": "[email protected]",
"url": "https://github.com/wbruno"
},
{
"name": "Renan Martins Pimentel",
"email": "[email protected]",
"url": "https://github.com/renanmpimentel"
}
],
"keywords": [
"express4-boilerplate",
"boilerplate",
"static"
],
"license": "MIT",
"engines": {
"node": "0.10.x"
},
"dependencies": {
"compression": "^1.7.4",
"express": "^4.21.1",
"hbs": "^4.2.0",
"moment": "^2.29.4"
},
"devDependencies": {
"assemble": "^0.24.3",
"grunt": "^1.5.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-replace": "^2.0.2",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"should": "^13.2.3",
"supertest": "^4.0.2"
}
}