-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"version": "0.0.1",
"name": "app-toolbelt",
"description": "Toolbelt for digitalfabrik apps",
"private": true,
"type": "commonjs",
"bin": {
"app-toolbelt": "bin/app-toolbelt"
},
"scripts": {
"start": "ts-node src/start.ts",
"build": "tsc --build",
"test": "jest",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"dependencies": {
"@octokit/auth-app": "^3.6.1",
"@octokit/rest": "^18.12.0",
"@types/flat": "^5.0.2",
"@types/js-yaml": "^4.0.5",
"commander": "^9.1.0",
"decamelize": "^5.0.1",
"flat": "^5.0.2",
"jira-client": "^8.1.0",
"js-yaml": "^4.1.0",
"node-fetch": "^2.6.7",
"oauth": "^0.9.15",
"ts-node": "^10.7.0",
"@types/node": "^17.0.25",
"typescript": "^4.6.3",
"@sentry/cli": "^2.0.2"
},
"devDependencies": {
"prettier": "^2.6.2",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"@types/jira-client": "^7.1.4",
"@types/node-fetch": "^2.6.1",
"jest": "^27.5.1"
}
}