-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.47 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
{
"name": "apollo-server-express-v4-boilerplate",
"version": "1.0.0",
"description": "TODO: Finish TypeORM explanation in README.",
"main": "index.js",
"type": "module",
"scripts": {
"generateFromSchema": "graphql-codegen --config codegen.yml",
"compile": "rimraf dist && graphql-codegen --config codegen.yml && tsc",
"startAfterBuild": "npm run compile && node ./dist/index.js",
"start": "node ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cmhhelgeson/Apollo-Server-Express-v4-Boilerplate.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cmhhelgeson/Apollo-Server-Express-v4-Boilerplate/issues"
},
"homepage": "https://github.com/cmhhelgeson/Apollo-Server-Express-v4-Boilerplate#readme",
"dependencies": {
"@apollo/server": "^4.4.0",
"@graphql-tools/mock": "^8.7.18",
"@graphql-tools/schema": "^9.0.16",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-scalars": "^1.20.1",
"graphql-tag": "^2.12.6",
"pg": "^8.9.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.12",
"typescript": "^4.9.5"
},
"devDependencies": {
"@graphql-codegen/cli": "^3.2.1",
"@graphql-codegen/typescript": "^3.0.1",
"@graphql-codegen/typescript-resolvers": "^3.1.0",
"@types/cors": "^2.8.13",
"@types/node": "^18.14.1",
"concurrently": "^7.6.0",
"nodemon": "^2.0.20"
}
}