-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.56 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
{
"name": "graphql-scaffold",
"version": "1.0.0",
"description": "Small Standalone Scaffold",
"license": "ISC",
"scripts": {
"chimp": "chimp generate",
"postinstall": "patch-package && npm run chimp",
"lint": "eslint --fix --ext .ts --quiet --cache src/",
"precommit": "lint-staged",
"start": "npm run start:ts",
"start:ts": "nodemon -r tsconfig-paths/register --config ./nodemon.run.json ./src/index.ts",
"test": "jest --forceExit",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"lint-staged": {
"src/**/*.ts*": [
"eslint --fix",
"jest --findRelatedTests --forceExit"
],
"package.json": [
"sort-package-json"
]
},
"dependencies": {
"@apollo/server": "^4.9.0",
"@apollo/subgraph": "^2.5.1",
"@types/cors": "^2.8.13",
"body-parser": "^1.20.2",
"cookie-parser": "1.4.5",
"cors": "^2.8.5",
"express": "4.17.1",
"graphql": "16.7.1",
"graphql-tag": "2.12.6",
"lodash": "4.17.21",
"lokijs": "^1.5.12",
"patch-package": "^8.0.0",
"portable-fetch": "3.0.0",
"tsconfig-paths": "3.9.0"
},
"devDependencies": {
"@graphql-codegen/add": "5.0.0",
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-mongodb": "2.4.6",
"@graphql-codegen/typescript-operations": "4.0.1",
"@graphql-codegen/typescript-resolvers": "4.0.1",
"@graphql-tools/graphql-file-loader": "8.0.0",
"@graphql-tools/load": "8.0.0",
"@graphql-tools/merge": "9.0.0",
"@jest/globals": "26.1.0",
"@tsconfig/node18": "^18.2.0",
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/jest": "29.4.0",
"@types/lodash": "^4.14.196",
"@types/lokijs": "^1.5.8",
"@types/node": "14.0.23",
"@types/shelljs": "0.8.8",
"@typescript-eslint/eslint-plugin": "6.2.1",
"@typescript-eslint/parser": "6.2.1",
"chimp": "5.0.0",
"chimp-graphql-codegen-plugin": "latest",
"eslint": "8.46.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "8.10.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-prettier": "5.0.0",
"jest": "29.6.2",
"lint-staged": "10.2.11",
"nodemon": "2.0.4",
"prettier": "3.0.1",
"shelljs": "0.8.5",
"testdouble": "3.18.0",
"testdouble-jest": "2.0.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.1.6"
}
}