-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.45 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
{
"name": "node-express-apollo-graphql",
"version": "0.1.0",
"description": "Provides a standardized framework for starting a graphql api",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"dev": "ts-node ./src/index.ts",
"dev:watch": "nodemon",
"lint": "tsc --noEmit && eslint .",
"graphql-codegen": "graphql-codegen --config codegen.yml",
"pre-commit": "lint-staged",
"prepare": "husky install",
"start": "node ./dist/src/index.js",
"test": "npm run lint && jest ./src",
"test:coverage": "npm run lint && jest --collect-coverage"
},
"contributors": [
"Lance Gliser <[email protected]> (https://fragmentedthought.com)"
],
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.7.5",
"@graphql-tools/load-files": "^7.0.0",
"@graphql-tools/schema": "^10.0.0",
"@graphql-tools/utils": "^10.0.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express-healthcheck": "^0.1.0",
"express-session": "^1.17.3",
"express-winston": "^4.2.0",
"graphql": "^16.7.1",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.12.6",
"graphql-type-json": "^0.3.2",
"lodash.truncate": "^4.4.2",
"pkce-challenge": "^3.1.0",
"tslib": "^2.6.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-graphql-request": "^5.0.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-resolvers": "^4.0.1",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/express-winston": "^4.0.0",
"@types/jest": "^29.5.3",
"@types/lodash.truncate": "^4.4.7",
"@types/luxon": "^3.3.0",
"@types/node": "^18.16.19",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"luxon": "^3.3.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"prettier-eslint": "^15.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"src/**/*.{js,ts,json,md,graphql}": [
"prettier --write"
]
}
}