forked from navikt/security-champion-slackbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 933 Bytes
/
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
{
"name": "security-champion-slackbot",
"private": true,
"version": "1.0.0",
"description": "",
"main": "build/cli.js",
"scripts": {
"test": "jest",
"start": "node build/cli.js",
"build": "tsc",
"prepare": "husky install",
"refresh": "rm -rf node_modules && rm package-lock.json && npm i",
"test-storage": "node build/cli.js test-storage || exit 0",
"sync": "node build/cli.js sync || exit 0"
},
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/storage": "^7.7.0",
"@slack/bolt": "^3.16.0",
"cross-fetch": "^4.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{js,ts,css,md}": "prettier --write"
}
}