-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.56 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.56 KB
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
83
84
{
"name": "modern-stack-portfolio-graphql-server",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"now-build": "tsc || true",
"install:workspace": "cd ../../ && yarn install && cd packages/graphql",
"build": "tsc --outDir dist || true",
"start": "node dist/index.js",
"dev:strict": "STRICT_TYPING=true npx ts-node-dev --n src/index.ts",
"dev:watch": "NODE_ENV=development ts-node-dev --respawn --transpileOnly src/index.ts",
"dev": "NODE_ENV=development ts-node src/index.ts",
"test:watch": "jest --config jest.config.js --watch",
"start:mock": "npx json-server --watch src/data/db.json --port 5555"
},
"resolutions": {
"graphql": "14.3.0",
"node-fetch": "2.5.0",
"@graphql-modules/di": "0.7.3"
},
"dependencies": {
"redis": "2.8.0",
"firebase-admin": "7.4.0",
"mkdirp": "0.5.1",
"reflect-metadata": "0.1.13",
"apollo-datasource-rest": "0.4.0",
"apollo-datasource": "0.4.0",
"apollo-errors": "1.9.0",
"apollo-resolvers": "1.4.1",
"apollo-server": "2.5.0",
"apollo-server-caching": "0.4.0",
"apollo-server-cache-redis": "0.4.0",
"apollo-server-express": "2.5.0",
"graphql-tools": "4.0.4",
"graphql-extensions": "0.6.0",
"@graphql-modules/core": "0.7.3",
"@graphql-modules/epoxy": "0.4.0",
"@graphql-modules/sonar": "0.4.0",
"@graphql-modules/di": "0.7.3",
"@graphql-modules/utils": "0.4.0",
"pino": "5.12.5",
"express-pino-logger": "4.0.0",
"express": "4.17.0",
"graphql": "14.3.0",
"apollo-server-core": "2.5.0",
"graphql-toolkit": "0.2.12",
"encoding": "0.1.12",
"utf-8-validate": "5.0.2",
"bufferutil": "4.0.1"
},
"devDependencies": {
"@types/redis": "2.8.12",
"ts-jest": "24.0.2",
"ts-node": "8.1.0",
"jest": "24.8.0",
"jest-cli": "24.8.0",
"@types/jest": "24.0.13",
"pino-pretty": "3.0.0",
"@types/graphql": "14.2.0",
"typescript": "3.4.5",
"@firebase/app-types": "0.4.0",
"@types/pino": "5.8.7",
"@types/mkdirp": "0.5.2",
"@types/express": "4.16.1",
"danger": "7.1.4"
},
"license": "MIT",
"description": "Graphql portion of the generic portfolio, written in the modern web stack, used on jameswiens.dev site",
"homepage": "https://jameswiens.dev",
"author": "James Wiens <james@jameswiens.dev> (https://jameswiens.dev)",
"repository": {
"type": "git",
"url": "git@github.com:aretecode/modern-stack-portfolio-graphql.git"
},
"keywords": [
"jameswiens",
"james",
"wiens",
"dev",
"aretecode",
"portfolio",
"graphql"
]
}