forked from ucsf-education/zorgbort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "zorgbort",
"version": "11.0.0",
"description": "Zorgbort does Iliosy things well",
"main": "app.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "eslint . --cache",
"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.19.0"
},
"devDependencies": {
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-n": "^17.10.0",
"eslint-plugin-prettier": "^5.2.1",
"pre-commit": "^1.2.2",
"prettier": "^3.3.1",
"serverless": "^3.39.0",
"serverless-offline": "^13.6.0"
},
"engines": {
"node": ">= 20"
},
"pre-commit": [
"lint"
]
}