-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 4.02 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "sentry-development-metrics",
"version": "1.0.0",
"private": true,
"description": "Tracks Sentry development metrics",
"author": "Billy Vong <[email protected]>",
"license": "BSL",
"repository": "https://github.com/getsentry/sentry-development-metrics.git",
"homepage": "https://github.com/getsentry/sentry-development-metrics",
"bugs": "https://github.com/billyvg/sentry-development-metrics/issues",
"main": "lib/index",
"keywords": [
"sentry",
"development-metrics"
],
"scripts": {
"build": "yarn tsc -p tsconfig.build.json",
"build:production": "yarn clean && yarn build && sentry-cli sourcemaps inject ./lib",
"clean": "[ -d lib ] && rm -rf lib/* || true",
"deploy": "yarn build && (yarn deploy:development-metrics)",
"deploy:development-metrics": "./bin/deploy.sh",
"dev": "yarn clean && NODE_ENV=development nodemon --ignore '*.test.ts' --watch src/ -e ts --exec \"yarn start:clean\"",
"inspect:clean": "yarn build && yarn inspect",
"inspect": "NODE_ENV=development node --inspect --async-stack-traces ./lib/index.js",
"migrate": "yarn knex --knexfile ./src/knexfile.ts",
"migrate:latest": "yarn migrate migrate:latest",
"start:clean": "yarn build && yarn start",
"start": "node --async-stack-traces ./lib/index.js",
"lint": "yarn eslint --ext .ts \"src\" \"test/**/*.ts\"",
"lint:fix": "yarn lint --fix",
"test": "yarn jest --useStderr --runInBand",
"test:debug": "yarn run --inspect jest --runInBand",
"test:ci": "yarn test --forceExit",
"test:dev": "yarn postgres && yarn test",
"test:watch": "NODE_ENV=development yarn jest --watch --notify --notifyMode=change --coverage",
"postgres": "docker start ci-tooling-postgres || docker run --rm --name ci-tooling-postgres -e POSTGRES_PASSWORD=docker -d -p 127.0.0.1:5434:5432 postgres:12"
},
"_moduleAliases": {
"_comment": "⚠️ Keep this in sync with jest.config.ts and tsconfig.json. ⚠️ ",
"@": "lib",
"@api": "lib/api",
"@apps": "lib/apps",
"@utils": "lib/utils",
"@webhooks": "lib/webhooks"
},
"dependencies": {
"@datadog/datadog-api-client": "^1.18.0",
"@google-cloud/bigquery": "^5.3.0",
"@octokit/auth-app": "^3.6.1",
"@octokit/plugin-retry": "^3.0.9",
"@octokit/rest": "^18.12.0",
"@octokit/types": "^6.34.0",
"@octokit/webhooks": "^11.1.2",
"@sentry/integrations": "^7.72.0",
"@sentry/node": "^7.72.0",
"@sentry/tracing": "^7.72.0",
"@slack/bolt": "^3.1.1",
"@slack/types": "^2.0.0",
"@slack/web-api": "^6.0.0",
"@types/lodash.merge": "^4.6.6",
"@types/node": "12",
"@types/tar": "^6.1.4",
"fastify": "^3.29.4",
"fastify-formbody": "^5.2.0",
"google-auth-library": "^9.10.0",
"js-yaml": "^4.1.0",
"knex": "^2.4.2",
"middie": "^5.3.0",
"module-alias": "^2.2.2",
"moment-timezone": "^0.5.39",
"pg": "^8.5.1",
"source-map-support": "^0.5.21",
"tar": "^6.2.1",
"typescript": "^4.7.0"
},
"devDependencies": {
"@sentry/cli": "^2.20.1",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"dotenv": "^16.0.3",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": ">=4.3.0",
"jest": "^29.6.0",
"jest-circus": "^29.6.0",
"lint-staged": ">=10.5.4",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2",
"markdownlint-cli": "^0.27.1",
"nodemon": "^2.0.7",
"pino-pretty": "^4.5.0",
"prettier": "^2.4.1",
"ts-jest": "^29.1.5",
"ts-node": "^10.8.1"
},
"resolutions": {
"set-value": ">=4.0.1"
},
"engines": {
"node": ">= 18.17.1"
},
"volta": {
"node": "18.17.1",
"yarn": "3.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn lint:fix --cache"
],
"*.md": [
"yarn markdownlint --fix"
]
},
"packageManager": "[email protected]"
}