-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 3.24 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "animl-serverless",
"type": "module",
"version": "3.0.0",
"description": "Lambda-based graphQL API for camera trap data management platform",
"main": "src/handler.js",
"scripts": {
"start": "npm run build && AWS_PROFILE=animl serverless offline --noAuth",
"build": "tsc",
"deploy-dev": "sls deploy --stage dev",
"deploy-prod": "sls deploy --stage prod",
"seed-db": "tsc && AWS_PROFILE=animl REGION=us-west-2 node ./src/scripts/seedDb.js",
"seed-db-dev": "STAGE=dev npm run seed-db",
"seed-db-prod": "STAGE=prod npm run seed-db",
"export-db": "tsc && AWS_PROFILE=animl REGION=us-west-2 node ./src/scripts/exportDb.js",
"export-db-dev": "STAGE=dev npm run export-db",
"export-db-prod": "STAGE=prod npm run export-db",
"update-docs": "tsc && AWS_PROFILE=animl REGION=us-west-2 node ./src/scripts/updateDocuments.js",
"update-docs-dev": "STAGE=dev npm run update-docs",
"update-docs-prod": "STAGE=prod npm run update-docs",
"create-project": "AWS_PROFILE=animl REGION=us-west-2 node ./src/scripts/createProject.js",
"create-project-dev": "STAGE=dev npm run create-project",
"create-project-prod": "STAGE=prod npm run create-project",
"test": "tape test/**.test.js",
"lint": "eslint src/ test/",
"codegen": "graphql-codegen --config codegen.ts"
},
"author": "Nathaniel Rindlaub",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.9.3",
"@as-integrations/aws-lambda": "^3.1.0",
"@aws-sdk/client-cognito-identity-provider": "^3.418.0",
"@aws-sdk/client-lambda": "^3.300.0",
"@aws-sdk/client-s3": "^3.282.0",
"@aws-sdk/client-sagemaker-runtime": "^3.182.0",
"@aws-sdk/client-secrets-manager": "^3.181.0",
"@aws-sdk/client-ses": "^3.181.0",
"@aws-sdk/client-sqs": "^3.181.0",
"@aws-sdk/client-ssm": "^3.181.0",
"@aws-sdk/lib-storage": "^3.182.0",
"@aws-sdk/s3-request-presigner": "^3.282.0",
"app-root-path": "^3.1.0",
"async-retry": "^1.3.3",
"csv-parse": "^5.3.0",
"csv-stringify": "^6.2.0",
"graphql": "^16.6.0",
"graphql-request": "^3.4.0",
"graphql-type-json": "^0.3.2",
"jwt-simple": "^0.5.6",
"lodash": "^4.17.20",
"luxon": "^3.2.1",
"mongo-cursor-pagination": "^8.1.2",
"mongodb-query-parser": "^4.0.0",
"mongoose": "^8.0.0",
"prompt": "^1.2.0",
"random-hex-color": "^1.0.1",
"sharp": "^0.33.4",
"stream-transform": "^3.3.1",
"superagent": "^6.1.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@parcel/watcher": "^2.4.1",
"@tsconfig/node20": "^20",
"@types/async-retry": "^1.4.8",
"@types/luxon": "^3.4.2",
"cli-progress": "^3.12.0",
"eslint": "^8.19.0",
"eslint-plugin-node": "^11.1.0",
"serverless": "^3.20.0",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-offline": "^13.0.0",
"serverless-plugin-typescript": "^2.1.5",
"sinon": "^17.0.0",
"tape": "^5.5.3",
"typescript": "^5.4.4",
"undici": "^6.0.0"
}
}