-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.97 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
{
"name": "admin-api",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"watch": "tsc -w & nodemon",
"start": "node dist/index.js",
"start:dev": "NODE_ENV=local npm run build && rover supergraph compose --config ./local-supergraph-config.yaml > local-supergraph.graphql --elv2-license accept && NODE_ENV=local AWS_XRAY_LOG_LEVEL=silent AWS_XRAY_CONTEXT_MISSING=LOG_ERROR npm run watch",
"test-ci": "npm test",
"test:watch": "npm test -- --watchAll",
"test": "jest",
"lint-check": "eslint --fix-dry-run \"src/**/*.ts\"",
"lint-fix": "eslint --fix \"src/**/*.ts\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/gateway": "2.8.5",
"@pocket-tools/apollo-utils": "2.2.0",
"@profusion/apollo-federation-upload": "4.0.0",
"@sentry/node": "7.6.0",
"@sentry/tracing": "7.6.0",
"apollo-server": "3.9.0",
"apollo-server-cache-memcached": "3.3.1",
"apollo-server-express": "3.9.0",
"apollo-server-plugin-base": "3.7.2",
"apollo-server-plugin-response-cache": "3.6.1",
"aws-xray-sdk-core": "3.3.8",
"aws-xray-sdk-express": "3.3.8",
"deep-equal-in-any-order": "2.0.6",
"graphql-upload": "13.0.0",
"jsonwebtoken": "9.0.1",
"jwks-rsa": "1.12.3",
"node-fetch": "2.6.12",
"qs": "6.11.2"
},
"devDependencies": {
"@pocket-tools/eslint-config": "2.1.7",
"@pocket-tools/tsconfig": "2.0.1",
"@types/chai": "4.3.5",
"@types/deep-equal-in-any-order": "1.0.1",
"@types/jest": "29.5.3",
"@types/jsonwebtoken": "9.0.2",
"@types/lodash": "4.14.195",
"@types/node": "18.16.19",
"@types/sinon": "10.0.15",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"chai": "4.3.7",
"eslint-plugin-prettier": "^5.1.3",
"jest": "29.6.1",
"lodash": "4.17.21",
"nock": "13.3.2",
"nodemon": "3.0.1",
"prettier": "3.0.0",
"sinon": "15.2.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1"
}
}