-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
93 lines (93 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "cmr-graphql",
"root": true,
"version": "1.0.0",
"description": "GraphQL API for NASA's Common Metadata Repository",
"graphdoc": {
"endpoint": "http://localhost:3013/graphql",
"output": "./doc/schema"
},
"maintainers": [
{
"name": "Earthdata Search",
"email": "[email protected]"
}
],
"scripts comments": {
"preinstall": "install dependencies for the application stack",
"run-synth": "generate the CloudFormation template and bundle assets for the application stack",
"watch": "run run-synth on file changes",
"prestart": "run run-synth before starting the local API Gateway to ensure the application is bundled"
},
"scripts": {
"preinstall": "cd cdk/graphql && npm ci",
"run-synth": "cd cdk/graphql && npm run cdk synth -- --quiet",
"watch": "onchange 'src/**' -- npm run run-synth",
"prestart": "npm run run-synth",
"start": "./bin/start-and-watch.sh",
"start-prod": "dotenvx run -f .env.prod -- npm run start",
"start-uat": "dotenvx run -f .env.uat -- npm run start",
"start-sit": "dotenvx run -f .env.sit -- npm run start",
"start-local": "dotenvx run -f .env.local -- npm run start",
"test": "vitest --config vitest.config.js",
"silent-test": "vitest --config vitest.config.js --silent",
"lint": "eslint .",
"deploy-infrastructure": "cd cdk/graphql-infrastructure && npm ci --include=dev && npm run cdk deploy -- --progress events --require-approval never",
"deploy-application": "cd cdk/graphql && npm ci --include=dev && npm run cdk deploy -- --progress events --require-approval never"
},
"devDependencies": {
"@rollup/plugin-graphql": "^2.0.4",
"@vitest/coverage-istanbul": "^1.4.0",
"aws-sdk-client-mock": "^4.0.0",
"esbuild": "^0.20.2",
"nock": "^13.5.4",
"onchange": "^7.1.0",
"snyk": "^1.1283.0",
"vitest": "^1.4.0"
},
"dependencies": {
"@apollo/server": "^4.10.2",
"@as-integrations/aws-lambda": "^3.1.0",
"@aws-sdk/client-lambda": "^3.540.0",
"@aws-sdk/client-s3": "^3.540.0",
"@babel/core": "^7.24.3",
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-env": "^7.24.3",
"@dotenvx/dotenvx": "^1.31.0",
"@edsc/eslint-config": "^0.0.5",
"@graphql-tools/merge": "^9.0.3",
"@graphql-tools/schema": "^10.0.3",
"array-foreach-async": "^1.0.1",
"axios": "^1.6.8",
"babel-loader": "^9.1.3",
"camelcase-keys": "^9.1.3",
"dasherize": "^2.0.0",
"dataloader": "^2.2.2",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"graphql": "^16.8.1",
"graphql-middleware": "^6.1.35",
"graphql-parse-resolve-info": "^4.13.0",
"graphql-shield": "^7.6.5",
"graphql-tag": "^2.12.6",
"graphql-type-json": "^0.3.2",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"lodash": "^4.17.21",
"qs": "^6.12.0",
"snakecase-keys": "^6.0.0",
"stellate": "^2.11.1",
"uuid": "^9.0.1"
},
"overrides": {
"graphql-parse-resolve-info": {
"graphql": "$graphql"
}
}
}