-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.46 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
{
"name": "firefox-api-proxy",
"version": "1.0.0",
"description": "Firefox new tab and privileged extension stable API proxy (BFF)",
"main": "dist/main.js",
"scripts": {
"build": "rm -rf dist && tsc",
"codegen": "npm run codegen:graphql-types && npm run codegen:openapi-types",
"codegen:graphql-types": "graphql-codegen",
"codegen:openapi-types": "openapi-typescript ./openapi.yml -o ./src/generated/openapi/types.ts",
"docs": "redocly preview-docs openapi.yml",
"watch": "tsc -w & nodemon",
"start": "node dist/main.js",
"start:dev": "npm run build && npm run watch",
"test-ci": "npm test",
"test:watch": "npm test -- --watchAll",
"test": "jest \"\\.spec\\.ts\"",
"test-integrations": "jest \"\\.integration\\.ts\" --forceExit",
"lint-check": "eslint --fix-dry-run \"src/**/*.ts\"",
"lint-fix": "eslint --fix \"src/**/*.ts\"",
"lint-openapi": "redocly lint openapi.yml",
"prepare": "husky install"
},
"engines": {
"node": "=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pocket/firefox-api-proxy.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pocket/firefox-api-proxy/issues"
},
"homepage": "https://github.com/Pocket/firefox-api-proxy#readme",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.1.0",
"@pocket-tools/ts-logger": "^1.2.4",
"@sentry/node": "7.7.0",
"@sentry/tracing": "7.7.0",
"ajv": "^8.11.2",
"cookie-parser": "^1.4.6",
"dataloader": "^2.0.0",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"graphql-tag": "^2.12.6",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@graphql-codegen/add": "^4.0.0",
"@graphql-codegen/cli": "^3.0.0",
"@graphql-codegen/typed-document-node": "^4.0.0",
"@graphql-codegen/typescript": "^3.0.0",
"@graphql-codegen/typescript-operations": "^3.0.0",
"@pocket-tools/eslint-config": "2.0.0",
"@pocket-tools/tsconfig": "2.0.1",
"@redocly/cli": "^1.0.0-beta.112",
"@types/chai": "4.3.1",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14",
"@types/jest": "29.5.12",
"@types/node": "18.19.33",
"fetch-mock-jest": "1.5.1",
"husky": "8.0.1",
"jest": "29.7.0",
"nock": "13.2.4",
"nodemon": "2.0.20",
"openapi-typescript": "^6.7.5",
"supertest": "6.3.3",
"ts-jest": "29.1.2",
"ts-node": "^10.9.2"
}
}