-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.94 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
65
66
67
68
69
70
71
{
"name": "tribeca-cep",
"version": "0.0.1",
"description": "A simple complex event processing system",
"main": "build/main.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node build/src/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/cep.git"
},
"keywords": [
"cep",
"nodejs",
"iot"
],
"author": "juanjofp, francescorivola",
"license": "MIT",
"bugs": {
"url": "https://github.com/3beca/cep/issues"
},
"homepage": "https://github.com/3beca/cep#readme",
"devDependencies": {
"@types/agenda": "^4.1.0",
"@types/convict": "^6.0.2",
"@types/jest": "^27.4.1",
"@types/mongodb": "^3.6.16",
"@types/node": "^15.6.1",
"@types/node-fetch": "^2.5.10",
"@types/pino": "^6.3.8",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"codecov": "^3.8.2",
"eslint": "^8.13.0",
"eslint-plugin-filenames": "^1.3.2",
"jest": "^27.5.1",
"nock": "^13.2.4",
"nodemon": "^2.0.15",
"prom-client": "^14.0.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"agenda": "^3.1.0",
"ajv": "^7.2.4",
"ajv-errors": "^2.0.1",
"ajv-formats": "^2.1.0",
"convict": "^6.2.3",
"escape-string-regexp": "^4.0.0",
"fastify": "^3.28.0",
"fastify-bearer-auth": "^6.2.0",
"fastify-cors": "^6.0.3",
"fastify-metrics": "^8.0.0",
"fastify-swagger": "^5.1.0",
"geolib": "^3.3.1",
"liquidjs": "^9.25.0",
"make-promises-safe": "^5.1.0",
"mongodb": "^3.6.9",
"node-fetch": "^2.6.1",
"save": "^2.4.0"
}
}