-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.66 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
{
"name": "graphql_apollo_express",
"version": "1.0.0",
"main": "app.js",
"repository": "https://github.com/Ayoub-Mabrouk/GraphQl-Apollo-Express.git",
"author": "Ayoub Mabrouk <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --cls -r tsconfig-paths/register --respawn --transpile-only src/app.ts",
"prod": "node -r ts-node/register/transpile-only -r tsconfig-paths/register ./dist/src/index.js",
"build": "tsc -p tsconfig.prod.json",
"gen": "cls && graphql-codegen --config codegen.yml",
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint --fix --ext .js,.jsx .",
"cm": "cz",
"test": "jest",
"test:unit": "jest unit",
"test:int": "jest int",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@graphql-tools/load-files": "^6.5.3",
"@graphql-tools/merge": "^8.2.6",
"@graphql-tools/schema": "^8.3.10",
"@graphql-tools/utils": "^8.6.9",
"apollo-server": "^3.6.7",
"apollo-server-express": "^3.6.7",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dataloader": "^2.1.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-jwt": "^6.1.1",
"graphql": "^16.3.0",
"graphql-depth-limit": "^1.1.0",
"graphql-introspection-filtering": "^2.0.0",
"graphql-middleware": "^6.1.22",
"graphql-shield": "^7.5.0",
"graphql-tools": "^8.2.8",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.10",
"validator": "^13.7.0"
},
"devDependencies": {
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.8",
"@graphql-codegen/typescript-resolvers": "2.6.1",
"@types/express": "^4.17.13",
"@types/express-jwt": "^6.0.4",
"@types/graphql-depth-limit": "^1.1.3",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.23",
"@types/validator": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.4.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"tsc-alias": "^1.6.6",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}