-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "annalise-exercise",
"scripts": {
"lint": "eslint --ext .js,.ts functions",
"build": "tsc",
"start": "node-dev src/index.ts",
"test": "jest"
},
"engines": {
"node": "16"
},
"main": "lib/index.js",
"dependencies": {
"@aws-sdk/client-s3": "^3.465.0",
"@koa/router": "^12.0.0",
"basic-auth": "^2.0.1",
"busboy": "^1.6.0",
"dotenv": "^16.3.1",
"form-data": "^4.0.0",
"koa": "^2.13.4",
"koa-body": "^6.0.1",
"koa-jwt": "^4.0.4",
"koa-zod-router": "^2.2.0"
},
"devDependencies": {
"@types/basic-auth": "^1.1.6",
"@types/busboy": "^1.5.0",
"@types/jest": "^28.1.8",
"@types/koa": "^2.13.5",
"@types/koa__router": "^8.0.11",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.55.0",
"eslint-config-google": "^0.14.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^1.0.1",
"eslint-plugin-import": "^2.25.4",
"jest": "^28.1.3",
"node-dev": "^7.4.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}