Skip to content

Commit 256a00d

Browse files
committed
Add missing fields and remove unused dependency
1 parent 697c887 commit 256a00d

File tree

2 files changed

+15
-20
lines changed

2 files changed

+15
-20
lines changed

package.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
{
2-
"name": "node-arch",
3-
"version": "1.0.0",
2+
"name": "node-api-boilerplate",
3+
"version": "3.0.0-beta",
4+
"description": "A boilerplate for web APIs using Node",
45
"main": "dist/index.js",
6+
"private": true,
57
"license": "MIT",
8+
"contributors": [
9+
"Talysson <talyssonoc@gmail.com>",
10+
"Bruno <brunohcastro@gmail.com>"
11+
],
12+
"engines": {
13+
"node": ">=12.0.0"
14+
},
615
"dependencies": {
716
"awilix": "^4.3.4",
817
"dotenv": "^10.0.0",
@@ -21,7 +30,6 @@
2130
},
2231
"devDependencies": {
2332
"@types/express": "^4.17.13",
24-
"@types/express-jwt": "^6.0.2",
2533
"@types/jest": "^26.0.24",
2634
"@types/lodash.template": "^4.5.0",
2735
"@types/mongodb": "^3.6.20",
@@ -51,9 +59,11 @@
5159
"scripts": {
5260
"prebuild": "rimraf dist",
5361
"build": "tsc",
54-
"dev": "tsnd --transpile-only --inspect --files src/index.ts | pino-pretty -c -l",
62+
"dev": "tsnd --transpile-only --files src/index.ts | pino-pretty -c -l",
63+
"debug": "tsnd --transpile-only --inspect --files src/index.ts | pino-pretty -c -l",
5564
"cli": "tsnd --transpile-only --files src/index.ts --cli",
56-
"remote": "ts-node bin/replClient.ts"
65+
"remote": "ts-node bin/replClient.ts",
66+
"test": "jest"
5767
},
5868
"jest": {
5969
"moduleFileExtensions": [

yarn.lock

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -725,14 +725,6 @@
725725
resolved "https://registry.yarnpkg.com/@types/cookiejar/-/cookiejar-2.1.2.tgz#66ad9331f63fe8a3d3d9d8c6e3906dd10f6446e8"
726726
integrity sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog==
727727

728-
"@types/express-jwt@^6.0.2":
729-
version "6.0.2"
730-
resolved "https://registry.yarnpkg.com/@types/express-jwt/-/express-jwt-6.0.2.tgz#15938f9a50945ccab35361227e438f98abdb713f"
731-
integrity sha512-WDnO/0jeWyhX253TOIJHZzLE/pmXSucslKeztphjZDxim/wYDaDeDcj6/U9YAHcgFfwBu+I3Obfy+xB6/VaRcA==
732-
dependencies:
733-
"@types/express" "*"
734-
"@types/express-unless" "*"
735-
736728
"@types/express-serve-static-core@^4.17.18":
737729
version "4.17.24"
738730
resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.24.tgz#ea41f93bf7e0d59cd5a76665068ed6aab6815c07"
@@ -742,13 +734,6 @@
742734
"@types/qs" "*"
743735
"@types/range-parser" "*"
744736

745-
"@types/express-unless@*":
746-
version "0.5.2"
747-
resolved "https://registry.yarnpkg.com/@types/express-unless/-/express-unless-0.5.2.tgz#07e29883d280778588644b03563d8796f870f20e"
748-
integrity sha512-Q74UyYRX/zIgl1HSp9tUX2PlG8glkVm+59r7aK4KGKzC5jqKIOX6rrVLRQrzpZUQ84VukHtRoeAuon2nIssHPQ==
749-
dependencies:
750-
"@types/express" "*"
751-
752737
"@types/express@*", "@types/express@^4.17.13":
753738
version "4.17.13"
754739
resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.13.tgz#a76e2995728999bab51a33fabce1d705a3709034"

0 commit comments

Comments
 (0)