Skip to content

Commit bcb0239

Browse files
Add dev and live dependencies
`package.json` is generated automatically from the content within `.projenrc.js` - Add supertest, keypair and express as well as the @types definition to our dev dependencies - Add passport and jsonwebtoken to the list of production dependencies
1 parent 031f2d9 commit bcb0239

File tree

6 files changed

+22708
-792
lines changed

6 files changed

+22708
-792
lines changed

.projen/deps.json

Lines changed: 42 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projen/tasks.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projenrc.js

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,18 @@ const project = new typescript.TypeScriptProject({
55
license: 'MIT',
66
copyrightOwner: 'Dynamic Labs',
77

8-
// deps: [], /* Runtime dependencies of this module. */
8+
deps: ['passport@^0.5.2', 'jsonwebtoken@^8.5.1'],
9+
910
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
10-
// devDeps: [], /* Build dependencies for this module. */
11+
devDeps: [
12+
'supertest@^6.2.3',
13+
'@types/supertest',
14+
'@types/passport@^1.0.7',
15+
'@types/jsonwebtoken@^8.5.8',
16+
17+
'keypair',
18+
'express',
19+
] /* Build dependencies for this module. */,
1120
// packageName: undefined, /* The "name" in package.json. */
1221
});
1322
project.synth();

0 commit comments

Comments
 (0)