-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"version": "0.0.1",
"name": "app-toolbelt",
"description": "Toolbelt for digitalfabrik apps",
"private": true,
"type": "module",
"bin": {
"app-toolbelt": "bin/app-toolbelt"
},
"scripts": {
"start": "tsx src/start.ts",
"build": "tsc --build",
"test": "node --experimental-vm-modules $(yarn bin jest)",
"test:updateSnapshot": "NODE_OPTIONS='--experimental-vm-modules' npx jest test/v0.test.ts -u",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"dependencies": {
"@octokit/auth-app": "^7.1.5",
"@octokit/rest": "^21.1.1",
"@sentry/cli": "^2.42.2",
"@types/flat": "^5.0.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.9",
"commander": "^13.1.0",
"decamelize": "^6.0.0",
"flat": "^6.0.1",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.2",
"oauth": "^0.10.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"devDependencies": {
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/node-fetch": "^2.6.12",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"tsx": "^4.19.3"
}
}