This repository was archived by the owner on Mar 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.49 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.49 KB
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": "collection-log-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "serverless offline start --noTimeout --stage=local --host=localhost --httpPort=3001 --useChildProcesses",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint {migrations,src}/**/*.{js,ts,tsx}",
"lint:fix": "eslint --fix {migrations,src}/**/*.{js,ts,tsx}",
"migrate:latest": "knex migrate:latest",
"seed": "yarn run knex seed:run"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.81",
"@types/node": "^16.4.3",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"serverless": "^2.52.1",
"serverless-domain-manager": "^5.2.0",
"serverless-offline": "^8.5.0",
"serverless-plugin-typescript": "^1.1.9",
"serverless-tscpaths": "^0.0.6",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.3.5"
},
"dependencies": {
"@middy/core": "^3.6.1",
"@middy/do-not-wait-for-empty-event-loop": "^3.6.1",
"@types/uuid": "^8.3.3",
"@types/validator": "^13.7.1",
"aws-lambda": "^1.0.6",
"aws-sdk": "^2.953.0",
"dotenv": "^16.0.0",
"knex": "^2.3.0",
"objection": "^3.0.1",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"reflect-metadata": "^0.1.13",
"uuid": "^8.3.2"
}
}