-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.8 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
{
"name": "armold-microservices",
"version": "1.0.4-beta",
"description": "Armold microservices",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --collectCoverage",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint --fix --ext .ts .",
"prepare": "npm run build",
"preversion": "npm run lint"
},
"keywords": [
"typescript",
"github packages",
"npm packages",
"microservices"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lucaslopezf/armold-microservices.git"
},
"author": "Lucas Francisco López",
"jest": {
"transform": {
"\\.ts?$": "ts-jest"
},
"verbose": true
},
"dependencies": {
"@types/uuid": "^8.3.0",
"@types/express": "^4.17.6",
"@types/dotenv": "^8.2.0",
"@types/compression": "^1.7.0",
"agentkeepalive": "^4.1.3",
"ajv": "^6.12.4",
"axios": "^0.21.1",
"compression": "^1.7.4",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-prom-bundle": "^6.3.6",
"express-winston": "^4.0.5",
"prom-client": "^13.1.0",
"uuid": "^8.3.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.10.1",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-security": "^1.4.0",
"jest": "^25.5.4",
"prettier": "^2.0.4",
"ts-jest": "^25.4.0",
"ts-node": "3.3.0",
"tsc-watch": "^4.2.3",
"typescript": "^3.9.3"
}
}