-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.3 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node index.ts",
"dev": "concurrently \"ts-node index.ts\"\"npm run generate\"",
"generate": "graphql-codegen --config codegen.yml --watch",
"graphql-codegen init": "./node_modules/.bin/graphql-codegen init",
"test": "npx jest --detectOpenHandles --coverage"
},
"author": "th",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.12.0",
"apollo-server-types": "^0.3.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"concurrently": "^5.1.0",
"connect-redis": "^4.0.4",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"graphql": "^14.6.0",
"graphql-depth-limit": "^1.1.0",
"graphql-fields": "^2.0.3",
"graphql-middleware": "^4.0.2",
"graphql-shield": "^7.2.5",
"helmet": "^3.22.0",
"http-logger": "^1.0.1",
"knex": "^0.21.1",
"lodash": "^4.17.19",
"merge-graphql-schemas": "^1.7.6",
"minimist": "^1.2.5",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg": "^8.0.3",
"redis": "^3.0.2",
"redis-server": "^1.2.2",
"reflect-metadata": "^0.1.13",
"tsconfig-paths": "^3.9.0",
"uuid": "^8.0.0",
"validator": "^13.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.13.1",
"@graphql-codegen/introspection": "1.13.1",
"@graphql-codegen/typescript": "1.13.1",
"@graphql-codegen/typescript-document-nodes": "1.13.1",
"@graphql-codegen/typescript-mongodb": "1.13.1",
"@graphql-codegen/typescript-resolvers": "1.13.1",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.0",
"@types/express-session": "^1.17.0",
"@types/graphql-depth-limit": "^1.1.2",
"@types/graphql-resolvers": "^0.2.2",
"@types/helmet": "0.0.45",
"@types/jest": "^25.2.2",
"@types/lodash": "^4.14.150",
"@types/morgan": "^1.9.0",
"@types/passport": "^1.0.3",
"@types/pg": "^7.14.3",
"@types/redis": "^2.8.17",
"@types/uuid": "^7.0.3",
"@types/validator": "^12.0.1",
"jest": "^26.0.1",
"nodemon": "^2.0.3",
"ts-jest": "^26.0.0",
"ts-node": "^8.6.2",
"tsconfig-paths-jest": "0.0.1",
"typescript": "^3.9.2"
}
}