-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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": "Static service",
"version": "1.0.0",
"description": "Static service",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"debug": "npm run build && node --inspect-brk dist/server",
"format": "npm run prettier && npm run lint",
"generate": "graphql-codegen --config codegen.yml",
"lint": "npx eslint ./src/** --fix",
"prettier": "npx prettier --write ./src/",
"prepare": "husky install",
"start": "concurrently -k -n \"Server,GQL-Codegen\" -c \"blue,magenta\" \"nodemon src/server.ts\" \"npm run generate\"",
"start:prod": "node dist/server.js"
},
"keywords": [
"apollo-server-express",
"graphql",
"typescript",
"seed"
],
"author": "Bluetorch",
"license": "ISC",
"devDependencies": {
"@graphql-codegen/cli": "2.16.5",
"@graphql-codegen/introspection": "2.2.3",
"@graphql-codegen/typescript": "2.8.8",
"@graphql-codegen/typescript-resolvers": "2.7.13",
"@types/compression": "1.7.5",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/graphql": "14.5.0",
"@types/lodash": "4.17.13",
"@types/mongodb": "4.0.7",
"@types/node": "16.18.121",
"@types/nodemon": "1.19.6",
"@types/winston": "2.4.4",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"concurrently": "7.6.0",
"eslint": "8.57.1",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-promise": "6.6.0",
"husky": "7.0.4",
"jsdoc": "3.6.11",
"nodemon": "2.0.22",
"prettier": "2.8.8",
"ts-node": "10.9.2",
"typescript": "4.9.5"
},
"dependencies": {
"@graphql-tools/load-files": "^6.5.3",
"@graphql-tools/merge": "^8.2.2",
"@graphql-tools/schema": "^8.3.3",
"@graphql-tools/utils": "^8.6.1",
"@apollo/server": "^4.0.0",
"@apollo/server": "^4.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"graphql": "^16.0.0",
"graphql-subscriptions": "^2.0.0",
"graphql-type-json": "^0.3.2",
"graphql-ws": "^5.6.3",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"mongodb": "^4.0.0",
"rxjs": "^7.2.0",
"winston": "^3.3.3",
"winston3-logstash-transport": "^1.2.3",
"winston3-logstash-udp": "^0.0.7",
"ws": "^8.5.0"
}
}