-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.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
{
"name": "ts-graphql-starter",
"version": "1.0.0",
"description": "A GraphQL API starter using NodeJS, TypeScript and Apollo Server",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"build": "rimraf ./build && tsc",
"start": "npm run build && node ./build/index.js",
"test": "jest --watch",
"coverage": "jest --coverage",
"generate": "graphql-codegen --config codegen.ts",
"lint": "tsc --noEmit && eslint --ext .ts,.tsx ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rieranthony/ts-graphql-starter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Rieranthony/ts-graphql-starter/issues"
},
"homepage": "https://github.com/Rieranthony/ts-graphql-starter#readme",
"devDependencies": {
"@graphql-codegen/cli": "2.13.7",
"@graphql-codegen/graphql-modules-preset": "^2.5.3",
"@graphql-codegen/introspection": "2.2.1",
"@graphql-codegen/typescript": "^2.7.4",
"@graphql-codegen/typescript-resolvers": "^2.7.4",
"@shelf/jest-mongodb": "^4.1.1",
"@types/cors": "^2.8.12",
"@types/express-session": "^1.17.6",
"@types/helmet": "0.0.46",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.186",
"@types/node": "^13.13.5",
"@types/passport-google-oauth20": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"babel-eslint": "^10.1.0",
"eslint": "^8.26.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.8.4"
},
"dependencies": {
"@apollo/server": "^4.1.0",
"@types/mongoose": "^5.7.16",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"graphql": "^16.6.0",
"graphql-modules": "^2.1.0",
"graphql-tools": "^8.0.0",
"graphql-type-json": "^0.3.2",
"helmet": "^3.22.0",
"lodash": "^4.17.21",
"mongodb": "^4.10.0",
"mongoose": "^6.8.0",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"reflect-metadata": "^0.1.13"
},
"overrides": {
"oauth": "^0.10.0"
}
}