-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "zorgbort",
"version": "13.0.0",
"description": "Zorgbort does Iliosy things well",
"main": "app.js",
"private": true,
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "mocha",
"start": "nodemon --exec serverless offline --noPrependStageInUrl",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix",
"deploy:production": "serverless deploy --stage=prod --verbose",
"deploy:dev": "serverless deploy --stage=dev --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ucsf-ckm/zorgbort.git"
},
"author": "Ilios Team ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/ucsf-ckm/zorgbort/issues"
},
"homepage": "https://github.com/ucsf-ckm/zorgbort#README.md",
"dependencies": {
"@octokit/rest": "^20.1.0",
"@slack/bolt": "^3.21.4"
},
"devDependencies": {
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^11.0.1",
"pre-commit": "^1.2.2",
"prettier": "^3.4.2",
"serverless": "^4.4.18",
"serverless-offline": "^14.3.4"
},
"engines": {
"node": ">= 20"
},
"pre-commit": [
"lint"
]
}