-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "ilios-lti-server",
"version": "4.0.0",
"description": "Handles data requests in the LTI format and returns Ilios data.",
"exports": "./index.js",
"repository": "https://github.com/ilios/lti-server",
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix",
"test": "mocha",
"deploy:production": "serverless deploy --stage=prod --verbose",
"deploy:dev": "serverless deploy --stage=dev --verbose"
},
"type": "module",
"author": "The Ilios Team",
"license": "MIT",
"devDependencies": {
"@aws-sdk/client-s3": "^3.614.0",
"@stylistic/eslint-plugin-js": "^2.4.0",
"eslint": "^9.7.0",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-n": "^17.2.1",
"eslint-plugin-yml": "^1.16.0",
"globals": "^15.13.0",
"mocha": "^10.7.0",
"moment": "^2.30.1",
"serverless": "^4.1.12",
"serverless-plugin-additional-stacks": "^1.6.0"
},
"engines": {
"node": ">= 20",
"yarn": "use pnpm",
"npm": "use pnpm"
},
"dependencies": {
"jsonwebtoken": "^9.0.2",
"meow": "^11.0.0",
"node-fetch": "^3.3.2"
}
}