Created
May 18, 2019 11:52
-
-
Save FreekMencke/7914f13eb7bde6931ad5292982353230 to your computer and use it in GitHub Desktop.
How to Write Node.js Applications in TypeScript - package.json - step 2
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
| { | |
| "name": "node-typescript", | |
| "version": "0.0.1", | |
| "author": "Freek Mencke", | |
| "homepage": "https://medium.com/@freek_mencke", | |
| "license": "MIT", | |
| "scripts": { | |
| "start": "webpack --progress --env.development", | |
| "start:prod": "webpack --progress" | |
| }, | |
| "dependencies": {}, | |
| "devDependencies": {} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment