-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.32 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
72
73
74
75
76
77
{
"name": "@tazama-lf/frms-coe-lib",
"version": "5.0.0",
"description": "FRMS Center of Excellence package library",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tazama-lf/frms-coe-lib.git"
},
"files": [
"lib"
],
"publishConfig": {
"@tazama-lf:registry": "https://npm.pkg.github.com/",
"access": "public"
},
"scripts": {
"build": "npx rimraf lib && tsc --project tsconfig.json && copyfiles -f src/helpers/proto/*.proto lib/helpers/proto",
"test": "jest --config=jest.config.ts --passWithNoTests",
"clean": "npx rimraf lib node_modules coverage package-lock.json",
"fix": "npm run fix:prettier && npm run fix:eslint",
"fix:eslint": "eslint --fix \"**/*.ts\"",
"fix:prettier": "prettier --write \"**/*.ts\"",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint \"**/*.ts\"",
"lint:eslint-unused": "eslint --report-unused-disable-directives \"**/*.ts\"",
"lint:eslint-no-inline": "eslint --no-inline-config \"**/*.ts\"",
"lint:prettier": "prettier --check \"**/*.ts\"",
"dry": "npm publish --dry-run",
"prepare": "husky"
},
"dependencies": {
"@elastic/ecs-pino-format": "^1.5.0",
"@grpc/grpc-js": "^1.11.1",
"@grpc/proto-loader": "^0.7.13",
"@types/uuid": "^10.0.0",
"arangojs": "^8.8.1",
"dotenv": "^16.4.5",
"elastic-apm-node": "^4.6.0",
"ioredis": "^5.4.1",
"node-cache": "^5.1.2",
"pino": "^9.2.0",
"pino-elasticsearch": "^8.0.0",
"protobufjs": "^7.3.2",
"uuid": "^10.0.0"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@stylistic/eslint-plugin": "^2.1.0",
"@types/jest": "^29.5.12",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-love": "^52.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"husky": "^9.1.4",
"ioredis-mock": "^8.9.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.6.2"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}