-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.01 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
{
"name": "fibonacho-api",
"version": "0.0.0",
"description": "Fibonacho API",
"main": "dist/bin/start.js",
"scripts": {
"api-docs:start": "docker-compose -f ./api-docs/docker-compose.yml up docs",
"api-docs:validate": "docker-compose -f ./api-docs/docker-compose.yml up validator",
"build": "tsc",
"start": "ts-node src/bin/server-start",
"start:dist": "node dist/bin/server-start",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuaklabs/fibonacho-api.git"
},
"author": "Cuak McCuackl <[email protected]>",
"contributors": [
"Alberto Fernández <[email protected]> (http://onlythepixel.com)",
"Roberto Pintos López <[email protected]>",
"Francisco Aranda <[email protected]> (https://flaranda.com)",
"Alejandro López Redondo <[email protected]>",
"Santiago Espada <[email protected]> (https://santiespada.dev)",
"Ricardo Veronese Ricci <[email protected]> (https://riccivr.github.io/)",
"Eduardo Aguilar <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cuaklabs/fibonacho-api/issues"
},
"homepage": "https://github.com/cuaklabs/fibonacho-api#readme",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.19",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"dotenv": "^8.2.0",
"envalid": "^6.0.2",
"express": "^4.17.1",
"inversify": "^5.0.5",
"reflect-metadata": "^0.1.13",
"superstruct": "^0.14.2"
}
}