-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.89 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": "typescript-boilerplate",
"version": "1.0.0",
"description": "",
"author": "Julien Ganichot",
"license": "ISC",
"scripts": {
"dev": "nodemon",
"start": "node build/index.js",
"test": "jest",
"test:coverage": "jest --coverage",
"lint:fix": "eslint --fix src/**/*.ts",
"format:fix": "prettier --write src/**/*.ts",
"check": "npm run lint:fix && npm run format:fix",
"build": "tsc --project tsconfig.prod.json",
"codegen": "graphql-codegen --config codegen.yaml"
},
"devDependencies": {
"@graphql-codegen/cli": "3.0.0",
"@graphql-codegen/client-preset": "^2.0.0",
"@graphql-codegen/typescript": "3.0.0",
"@graphql-codegen/typescript-resolvers": "3.0.0",
"@types/cors": "^2.8.13",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"graphql-codegen": "^0.4.0",
"jest": "^29.4.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@apollo/server": "^4.4.0",
"@godaddy/terminus": "^4.11.2",
"@google-cloud/logging-winston": "^5.3.0",
"@google-cloud/opentelemetry-cloud-trace-exporter": "^2.0.0",
"@graphql-tools/schema": "^9.0.16",
"@opentelemetry/api": "^1.4.0",
"@opentelemetry/instrumentation": "^0.35.1",
"@opentelemetry/instrumentation-express": "^0.32.1",
"@opentelemetry/instrumentation-http": "^0.35.1",
"@opentelemetry/sdk-trace-base": "^1.9.1",
"@opentelemetry/sdk-trace-node": "^1.9.1",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"env": "^0.0.2",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"winston": "^3.8.2"
}
}