Last active
May 25, 2021 19:33
-
-
Save Umkus/50199c6b53929aba99bf02742dc1e567 to your computer and use it in GitHub Desktop.
Package.json updates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { | |
TypeScriptProject, | |
ProjectType, | |
} = require('projen'); | |
const project = new TypeScriptProject({ | |
defaultReleaseBranch: 'main', | |
name: 'projen', | |
buildWorkflow: false, | |
releaseWorkflow: false, | |
pullRequestTemplate: false, | |
deps: [ | |
'express', | |
], | |
devDeps: [ | |
'webpack', | |
], | |
description: 'Projen demo', | |
packageName: 'projen-demo', | |
projectType: ProjectType.APP, | |
}); | |
project.synth(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment