-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "design-first-api",
"version": "1.0.0",
"description": "Este repositorio sirve de complemento para la charla realizada en la sesión de [AsturiasHacking](http://asturiashacking.org) del día 18 de mayo de 2018: **_Design-first en el desarrollo de APIs_**.",
"main": "index.js",
"scripts": {
"start:watch": "nodemon --watch 'src' -e ts --exec 'ts-node' ./src/index.ts",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sergioalvz/design-first-api.git"
},
"keywords": [],
"author": "Sergio Álvarez <sergioalvarezsuarez@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sergioalvz/design-first-api/issues"
},
"homepage": "https://github.com/sergioalvz/design-first-api#readme",
"devDependencies": {
"@types/hapi": "^17.0.12",
"@types/inert": "^5.1.0",
"@types/jest": "^22.2.3",
"@types/vision": "^5.3.2",
"jest": "^22.4.3",
"nodemon": "^1.17.4",
"prettier": "1.12.1",
"ts-jest": "^22.4.6",
"ts-node": "^6.0.3",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"dependencies": {
"hapi": "^17.4.0",
"hapi-swagger": "^9.1.1",
"hapi-swaggered-ui": "^3.0.2",
"inert": "^5.1.0",
"vision": "^5.3.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}