-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.2 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
{
"name": "@sentry/chartcuterie",
"version": "0.5.0",
"license": "Apache-2.0",
"homepage": "https://github.com/getsentry/chartcuterie",
"bin": {
"chartcuterie": "./lib/index.js"
},
"scripts": {
"lint": "eslint src/**.ts",
"test": "jest",
"build": "tsc",
"watch": "tsc-watch"
},
"files": [
"lib/**/*",
"fonts/**/*",
"package.json",
"LICENSE",
"README"
],
"dependencies": {
"@sentry/node": "^8.33.1",
"@sentry/profiling-node": "^8.33.1",
"canvas": "^2.11.2",
"dotenv": "^8.2.0",
"echarts": "5.4.0",
"express": "4.20.0",
"joi": "17.6.0",
"winston": "3.7.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest-image-snapshot": "4.3.1",
"@types/node": "^20.10.6",
"@types/supertest": "^2.0.10",
"@types/yargs": "^17.0.32",
"eslint": "^8.56.0",
"eslint-config-sentry-app": "^1.129.0",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-image-snapshot": "5.1.0",
"prettier": "2.6.2",
"supertest": "6.2.3",
"ts-jest": "28.0.5",
"tsc-watch": "5.0.3",
"typescript": "^5.3.3"
},
"volta": {
"node": "20.10.0",
"yarn": "1.22.5"
}
}