-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.93 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
{
"name": "communication-service",
"version": "1.0.0",
"description": "Example of creating a function that runs as a cron job using the serverless `schedule` event",
"author": "",
"license": "MIT",
"scripts": {
"generate-templates": "ts-node ./scripts/generate-templates.ts",
"deploy-templates": "ts-node ./scripts/deploy-templates.ts",
"delete-templates": "ts-node ./scripts/delete-templates.ts",
"generate": "graphql-codegen --config codegen.yaml",
"lint": "yarn eslint src --ext ts --cache",
"lint:fix": "yarn lint --fix || true"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@types/eslint": "^8.4.2",
"@types/node": "^17.0.32",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"aws-lambda": "^1.0.7",
"aws-sdk": "^2.1132.0",
"axios": "^1.4.0",
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.1",
"ethers": "^5.6.5",
"graphql": "^15.8.0",
"markdown-draft-js": "^2.4.0",
"moment": "^2.29.2",
"pino": "^7.11.0",
"react": "^18.1.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/introspection": "^2.1.1",
"@graphql-codegen/typescript": "^2.4.11",
"@graphql-codegen/typescript-operations": "^2.4.0",
"@graphql-codegen/typescript-react-apollo": "^3.2.14",
"@types/aws-lambda": "^8.10.97",
"@types/draft-js": "^0.11.9",
"@types/markdown-draft-js": "^2.2.4",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"serverless-dotenv-plugin": "^4.0.0",
"serverless-offline": "^8.8.1",
"serverless-plugin-typescript": "^2.1.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"overrides": {
"ws": "7.4.4"
}
}