-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 KB
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
{
"name": "tribeca-mapper",
"version": "0.0.1",
"description": "A simple request mapper",
"main": "build/src/main.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "cd build/src && node main.js",
"start-dev": "cd src && ts-node main.ts --inspect=0.0.0.0:9229",
"start-watch": "nodemon -L src/main.ts --inspect=0.0.0.0:9229 --exec ts-node",
"lint": "eslint . --ext .ts",
"test": "jest --watchAll",
"test-ci": "jest --collect-coverage",
"publish-code-coverage": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3beca/mapper.git"
},
"keywords": [
"mapper",
"nodejs"
],
"author": "juanjofp, francescorivola",
"license": "MIT",
"bugs": {
"url": "https://github.com/3beca/mapper/issues"
},
"homepage": "https://github.com/3beca/mapper#readme",
"devDependencies": {
"@types/convict": "^5.2.2",
"@types/jest": "^27.5.0",
"@types/mongodb": "^4.0.7",
"@types/node": "^17.0.42",
"@types/request": "^2.48.8",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"codecov": "^3.8.3",
"eslint": "^6.8.0",
"eslint-plugin-filenames": "^1.3.2",
"jest": "^25.5.4",
"nock": "^13.2.6",
"nodemon": "^2.0.16",
"ts-jest": "^25.5.1",
"ts-node": "^10.8.1",
"typescript": "^3.9.10"
},
"dependencies": {
"convict": "^6.2.3",
"fastify": "^3.29.0",
"fastify-formbody": "^5.3.0",
"fastify-swagger": "^5.2.0",
"liquidjs": "^9.37.0",
"mongodb": "^3.6.10",
"node-fetch": "^2.6.7"
}
}