-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.2 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
{
"name": "backend-extravaganza",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:common": "jest src/common",
"test:queries": "jest src/queries-orms-and-stuff",
"test:graphql": "jest src/graphql",
"dev:queries": "ts-node -r tsconfig-paths/register src/queries-orms-and-stuff/index.ts",
"dev:graphql": "ts-node -r tsconfig-paths/register --ignore 'node_modules/(?!express-graphql)' src/graphql/index.ts",
"gen:schema-resolver-types": "graphql-codegen --config src/graphql/schema-first/codegen.yml",
"gen:mongo-resolver-types": "graphql-codegen --config src/graphql/graphql-mongo/codegen.yml"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/uuid": "^8.0.0",
"body-parser": "^1.19.0",
"compose-middleware": "^5.0.1",
"dataloader": "^2.0.0",
"express": "^4.17.1",
"express-graphql": "^0.10.0",
"express-validator": "^6.6.0",
"graphql": "^15.2.0",
"graphql-tools": "^6.0.12",
"knex": "^0.21.1",
"mongodb-memory-server": "^6.6.1",
"mongoose": "^5.9.21",
"reflect-metadata": "^0.1.13",
"sql-template-strings": "^2.2.2",
"sqlite": "^4.0.11",
"sqlite3": "^4.2.0",
"type-graphql": "^1.0.0-rc.3",
"typeorm": "^0.2.25",
"uuid": "^8.1.0"
},
"devDependencies": {
"@graphql-codegen/add": "^1.16.3",
"@graphql-codegen/cli": "1.16.3",
"@graphql-codegen/typescript": "1.16.3",
"@graphql-codegen/typescript-resolvers": "^1.16.3",
"@types/express": "^4.17.6",
"@types/jest": "^26.0.0",
"@types/knex": "^0.16.1",
"@types/mongoose": "^5.7.29",
"@types/sqlite3": "^3.1.6",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.2.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.5"
}
}