generated from valora-inc/typescript-app-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.51 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@valora/logging",
"version": "0.0.0-semantic-release",
"main": "dist/logging.js",
"typings": "dist/logging.d.ts",
"repository": "https://github.com/valora-inc/logging",
"author": "Valora Inc",
"license": "Apache-2.0",
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"keywords": [
"log",
"logging",
"cloud",
"google cloud",
"google logging",
"cloud functions",
"app engine",
"logs explorer",
"bunyan",
"redact",
"censor",
"sensitive data redaction"
],
"scripts": {
"build": "tsc",
"build:scripts": "tsc --project scripts/tsconfig.json",
"typecheck": "yarn build && yarn build:scripts",
"lint": "eslint --ext=.tsx,.ts,.json src/ scripts/",
"lint:fix": "yarn lint --fix",
"format": "prettier --loglevel error --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:watch": "yarn test --watch",
"test:ci": "yarn test --ci --coverage",
"supercheck": "yarn format && yarn lint:fix && yarn typecheck && yarn test",
"release": "semantic-release"
},
"dependencies": {
"@google-cloud/logging": "^11.2.0",
"@google-cloud/logging-bunyan": "^5.1.0",
"@types/bunyan": "^1.8.11",
"@types/fast-redact": "^3.0.4",
"bunyan": "^1.8.15",
"bunyan-prettystream": "^0.1.3",
"fast-redact": "^3.5.0"
},
"devDependencies": {
"@types/bunyan-prettystream": "^0.1.35",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node-fetch": "^2.6.12",
"@types/shelljs": "^0.8.15",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@valora/eslint-config-typescript": "^1.0.2",
"@valora/prettier-config": "^0.0.1",
"axios": "^1.7.9",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"express": "^4.21.2",
"got": "^11.8.6",
"jest": "^29.7.0",
"mockdate": "^3.0.5",
"node-fetch": "^2.7.0",
"prettier": "^3.4.2",
"semantic-release": "^19.0.5",
"shelljs": "^0.8.5",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"prettier": "@valora/prettier-config",
"release": {
"branches": [
"main"
],
"preset": "conventionalcommits"
},
"publishConfig": {
"access": "public"
}
}