-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.04 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
{
"name": "mermaid-preview",
"version": "1.0.0",
"private": true,
"description": "Create Mermaid diagrams and charts in Slack",
"scripts": {
"build": "tsc -p . && npm run build:markdown",
"build:markdown": "scripts/build-md-files.sh",
"build:watch": "tsc -w -p .",
"start": "npm run build && node dist/index.js",
"test": "vitest",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org gak-0l --project mermaid-preview ./dist && sentry-cli sourcemaps upload --org gak-0l --project mermaid-preview ./dist"
},
"keywords": [],
"author": "Jakub Mikulas",
"license": "MIT",
"dependencies": {
"@influxdata/influxdb3-client": "^0.12.0",
"@mermaid-js/mermaid-cli": "^10.9.1",
"@sentry/node": "^8.27.0",
"@sentry/profiling-node": "^8.27.0",
"@slack/bolt": "^3.21.1",
"ioredis": "^5.4.1",
"mermaid": "^10.9.1"
},
"devDependencies": {
"@sentry/cli": "^2.34.1",
"@types/node": "^22.5.1",
"marked": "^14.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}