-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
48
49
50
51
52
53
54
55
{
"name": "pets-service",
"version": "1.2.18",
"description": "A simple CRUD of pets service for learnning and trainnig new tecnologies",
"main": "index.js",
"scripts": {
"start": "nodemon server.js",
"test": "mocha --reporter spec test/integration/*.test.js",
"release": "release-it",
"get:version": "echo ${npm_package_version}"
},
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*",
"node_modules/*"
],
"delay": "2500"
},
"keywords": [
"pets",
"service",
"crud",
"trainnig",
"learning"
],
"author": "Daniel Arteaga <[email protected]> (https://darteaga.com)",
"license": "MIT",
"dependencies": {
"@hapi/hapi": "^19.1.1",
"@hapi/joi": "^17.1.0",
"mongoose": "^5.9.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"rest-hapi-gen": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.1",
"@release-it/conventional-changelog": "^1.1.4",
"chai": "^4.2.0",
"chai-connect-middleware": "^0.3.1",
"docker-composer-manager": "^0.1.3",
"mocha": "^8.1.0",
"nodemon": "^2.0.4",
"release-it": "^13.6.6"
},
"repository": {
"type": "git",
"url": "https://github.com/dani8art/pets.git"
},
"bugs": {
"url": "https://github.com/dani8art/pets/issues"
}
}