Skip to content

Commit aec0aa0

Browse files
authored
Update dependencies (#272)
1 parent 48377e6 commit aec0aa0

File tree

15 files changed

+1238
-833
lines changed

15 files changed

+1238
-833
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# These are supported funding model platforms
22

3-
github: koistya
3+
patreon: koistya

.github/workflows/pull_request.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828

2929
# Compile
3030
- run: yarn workspace api build
31+
- run: yarn workspace web build
3132
- run: yarn workspace proxy build
3233

3334
# Upload to a cloud storage bucket

.yarn/sdks/eslint/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint",
3-
"version": "7.15.0-pnpify",
3+
"version": "7.18.0-pnpify",
44
"main": "./lib/api.js",
55
"type": "commonjs"
66
}

.yarn/sdks/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript",
3-
"version": "4.1.2-pnpify",
3+
"version": "4.1.3-pnpify",
44
"main": "./lib/typescript.js",
55
"type": "commonjs"
66
}

.yarnrc.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ packageExtensions:
22
babel-plugin-relay@*:
33
dependencies:
44
"@babel/runtime": ^7.12.5
5-
react-relay@*:
6-
dependencies:
7-
scheduler: ^0.20.1
85
relay-compiler@*:
96
dependencies:
107
relay-compiler-language-typescript: ^13.0.2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Be sure to join our [Discord channel](https://discord.com/invite/bSsv7XM) for as
4242
Just clone the repo and run `yarn setup` followed by `yarn start`:
4343

4444
```bash
45-
$ git clone --origin=upstream --branch=main --single-branch --depth=0 \
45+
$ git clone --origin=upstream --branch=main --single-branch \
4646
https://github.com/kriasoft/nodejs-api-starter.git example
4747
$ cd ./example # Change current directory to the newly created one
4848
$ yarn setup # Configure environment variables

api/package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
"api:deploy": "yarn workspace api run deploy"
2121
},
2222
"dependencies": {
23-
"@sendgrid/mail": "^7.4.0",
23+
"@sendgrid/mail": "^7.4.2",
2424
"body-parser": "^1.19.0",
2525
"compression": "^1.7.4",
2626
"cookie": "^0.4.1",
2727
"cookie-parser": "^1.4.5",
28-
"core-js": "^3.8.1",
28+
"core-js": "^3.8.3",
2929
"cors": "^2.8.5",
3030
"cross-spawn": "^7.0.3",
3131
"dataloader": "^2.0.0",
@@ -34,45 +34,45 @@
3434
"express": "^4.17.1",
3535
"express-graphql": "^0.12.0",
3636
"faker": "^5.1.0",
37-
"google-auth-library": "^6.1.3",
37+
"google-auth-library": "^6.1.4",
3838
"graphql": "^15.4.0",
3939
"graphql-relay": "^0.6.0",
4040
"graphql-voyager": "^1.0.0-rc.31",
4141
"handlebars": "^4.7.6",
4242
"jsonwebtoken": "^8.5.1",
43-
"knex": "^0.21.12",
43+
"knex": "^0.21.16",
4444
"lodash": "^4.17.20",
4545
"moment-timezone": "^0.5.32",
4646
"nanoid": "^3.1.20",
4747
"pg": "^8.5.1",
48-
"pretty-error": "^2.1.2",
48+
"pretty-error": "^3.0.3",
4949
"slugify": "^1.4.6",
5050
"source-map-support": "^0.5.19",
51-
"uuid": "^8.3.1",
52-
"validator": "13.1.17"
51+
"uuid": "^8.3.2",
52+
"validator": "13.5.2"
5353
},
5454
"devDependencies": {
55-
"@babel/cli": "^7.12.8",
56-
"@babel/core": "^7.12.9",
57-
"@babel/register": "^7.12.1",
55+
"@babel/cli": "^7.12.10",
56+
"@babel/core": "^7.12.10",
57+
"@babel/register": "^7.12.10",
5858
"@types/cookie": "^0.4.0",
5959
"@types/cross-spawn": "^6.0.2",
60-
"@types/express": "^4.17.9",
61-
"@types/faker": "^5.1.3",
60+
"@types/express": "^4.17.11",
61+
"@types/faker": "^5.1.5",
6262
"@types/graphql-relay": "^0.6.0",
63-
"@types/jest": "^26.0.16",
63+
"@types/jest": "^26.0.20",
6464
"@types/jsonwebtoken": "^8.5.0",
65-
"@types/lodash": "^4.14.164",
66-
"@types/minimist": "^1.2.0",
65+
"@types/lodash": "^4.14.168",
66+
"@types/minimist": "^1.2.1",
6767
"@types/moment-timezone": "^0.5.30",
68-
"@types/node": "^14.14.6",
68+
"@types/node": "^14.14.22",
6969
"@types/uuid": "^8.3.0",
70-
"@types/validator": "^13.1.1",
70+
"@types/validator": "^13.1.3",
7171
"del-cli": "^3.0.1",
7272
"env": "workspace:*",
7373
"minimist": "^1.2.5",
74-
"nodemon": "^2.0.6",
75-
"typescript": "4.1.2"
74+
"nodemon": "^2.0.7",
75+
"typescript": "4.1.3"
7676
},
7777
"engines": {
7878
"node": ">=12"

db/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@
3333
"cross-spawn": "^7.0.3",
3434
"env": "workspace:*",
3535
"faker": "^5.1.0",
36-
"knex": "^0.21.12",
36+
"knex": "^0.21.16",
3737
"lodash": "^4.17.20",
3838
"minimist": "^1.2.5",
3939
"nanoid": "^3.1.20",
4040
"pg": "^8.5.1",
4141
"prettier": "2.2.1"
4242
},
4343
"devDependencies": {
44-
"@types/lodash": "^4.14.164"
44+
"@types/lodash": "^4.14.168"
4545
}
4646
}

env/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"main": "index.cjs",
88
"type": "commonjs",
99
"dependencies": {
10-
"@babel/core": "^7.12.9",
10+
"@babel/core": "^7.12.10",
1111
"dotenv": "^8.2.0",
1212
"minimist": "^1.2.5"
1313
}

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -22,39 +22,39 @@
2222
"g:test": "yarn test \"$INIT_CWD\""
2323
},
2424
"dependencies": {
25-
"@babel/cli": "^7.12.8",
26-
"@babel/core": "^7.12.9",
27-
"@babel/node": "^7.12.6",
25+
"@babel/cli": "^7.12.10",
26+
"@babel/core": "^7.12.10",
27+
"@babel/node": "^7.12.10",
2828
"@babel/plugin-proposal-class-properties": "^7.12.1",
2929
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
30-
"@babel/plugin-transform-runtime": "^7.12.1",
31-
"@babel/preset-env": "^7.12.7",
32-
"@babel/preset-react": "^7.12.7",
30+
"@babel/plugin-transform-runtime": "^7.12.10",
31+
"@babel/preset-env": "^7.12.11",
32+
"@babel/preset-react": "^7.12.10",
3333
"@babel/preset-typescript": "^7.12.7",
34-
"@babel/register": "^7.12.1",
35-
"@typescript-eslint/eslint-plugin": "^4.9.0",
36-
"@typescript-eslint/parser": "^4.9.0",
34+
"@babel/register": "^7.12.10",
35+
"@typescript-eslint/eslint-plugin": "^4.14.0",
36+
"@typescript-eslint/parser": "^4.14.0",
3737
"babel-jest": "^26.6.3",
3838
"cross-spawn": "^7.0.3",
3939
"dotenv": "^8.2.0",
4040
"env": "workspace:*",
41-
"eslint": "^7.15.0",
42-
"eslint-config-prettier": "^7.0.0",
41+
"eslint": "^7.18.0",
42+
"eslint-config-prettier": "^7.2.0",
4343
"eslint-plugin-jsx-a11y": "^6.4.1",
44-
"eslint-plugin-react": "^7.21.5",
44+
"eslint-plugin-react": "^7.22.0",
4545
"eslint-plugin-react-hooks": "^4.2.0",
4646
"inquirer": "^7.3.3",
4747
"jest": "^26.6.3",
4848
"prettier": "2.2.1",
49-
"typescript": "4.1.2"
49+
"typescript": "4.1.3"
5050
},
5151
"devDependencies": {
5252
"@jest/types": "^26.6.2",
5353
"@types/inquirer": "^7.3.1",
54-
"@types/node": "^14.14.6",
55-
"@types/prettier": "^2.1.5",
54+
"@types/node": "^14.14.22",
55+
"@types/prettier": "^2.1.6",
5656
"@yarnpkg/pnpify": "2.4.0",
57-
"husky": "^4.3.5"
57+
"husky": "^4.3.8"
5858
},
5959
"husky": {
6060
"hooks": {

0 commit comments

Comments
 (0)