@aleleba/create-node-ts-graphql-server 1.0.8 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -5,7 +5,7 @@ This project aims to have a starter kit for creating a new Node with typescript,
5
5
  Tech(Library or Framework) | Version |
6
6
  --- | --- |
7
7
  Jest (Testing) | 28.1.0
8
- Typescript | 4.7.2
8
+ Typescript | 4.7.3
9
9
  GraphQL | 16.5.0
10
10
 
11
11
  ## Setup
@@ -26,6 +26,8 @@ ENVIRONMENT=development
26
26
  WHITELIST_URLS=https://someurl.com
27
27
  #GRAPHIQL Default to "false"
28
28
  GRAPHIQL=true
29
+ #PLAYGROUND GRAPHQL Default to "false"
30
+ PLAYGROUND_GRAPHQL=true
29
31
  # PORT EXPOSE APP Default to 4000
30
32
  PORT=4000
31
33
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aleleba/create-node-ts-graphql-server",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Node with Typescript and GraphQL Server",
5
5
  "bin": "./bin/cli.js",
6
6
  "main": "index.js",
@@ -52,8 +52,8 @@
52
52
  "@babel/preset-env": "^7.18.2",
53
53
  "@babel/preset-typescript": "^7.17.12",
54
54
  "@babel/register": "^7.17.7",
55
- "@types/jest": "^27.5.1",
56
- "@types/node": "^17.0.36",
55
+ "@types/jest": "^28.1.1",
56
+ "@types/node": "^17.0.39",
57
57
  "@types/webpack": "^5.28.0",
58
58
  "@types/webpack-node-externals": "^2.5.3",
59
59
  "@typescript-eslint/eslint-plugin": "^5.27.0",
@@ -61,15 +61,15 @@
61
61
  "babel-loader": "^8.2.5",
62
62
  "clean-webpack-plugin": "^4.0.0",
63
63
  "compression-webpack-plugin": "^10.0.0",
64
- "eslint": "^8.16.0",
64
+ "eslint": "^8.17.0",
65
65
  "eslint-webpack-plugin": "^3.1.1",
66
66
  "jest": "^28.1.0",
67
67
  "nodemon": "^2.0.16",
68
68
  "supertest": "^6.2.3",
69
- "ts-jest": "^28.0.3",
69
+ "ts-jest": "^28.0.4",
70
70
  "ts-loader": "^9.3.0",
71
- "typescript": "^4.7.2",
72
- "webpack": "^5.72.1",
71
+ "typescript": "^4.7.3",
72
+ "webpack": "^5.73.0",
73
73
  "webpack-cli": "^4.9.2",
74
74
  "webpack-manifest-plugin": "^5.0.0",
75
75
  "webpack-node-externals": "^3.0.0",