-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.22 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
{
"name": "gql-typescript-codegen-apolloserver",
"version": "1.0.0",
"description": "Apollo GraphQL API wrapping Stars Wars API",
"main": "index.js",
"repository": "https://github.com/Khabz/sovtech_fullstack_assessment.git",
"author": {
"email": "khabubundivhu@gmail.com",
"name": "Khabubu Ndivhuwo"
},
"license": "MIT",
"scripts": {
"dev": "nodemon",
"start": "node ./dist/src/index.js",
"build": "tsc -p tsconfig.prod.json",
"test": "yarn test:unit && yarn test:integration",
"test:unit": "jest unit",
"test:integration": "dotenv -e ./.env.test yarn generate:reset && dotenv -e ./.env.test jest int -i",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"generate": "graphql-codegen --config codegen.yml"
},
"devDependencies": {
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/introspection": "2.1.0",
"@graphql-codegen/typescript": "2.2.2",
"@graphql-codegen/typescript-resolvers": "2.3.0",
"@types/compression": "^1.7.2",
"@types/dotenv-safe": "^8.1.2",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"jest-mock-extended": "^1.0.18",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"dependencies": {
"@graphql-codegen/core": "^1.17.10",
"@graphql-codegen/plugin-helpers": "^1.18.8",
"@graphql-codegen/schema-ast": "^1.18.3",
"apollo-graphql": "^0.9.3",
"apollo-server": "^3.0.2",
"apollo-server-express": "^3.4.0",
"axios": "^0.22.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv-cli": "^4.0.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.5.1",
"http": "^0.0.1-security",
"lodash": "^4.17.21",
"path": "^0.12.7"
}
}