Skip to content

Instantly share code, notes, and snippets.

@evan-boissonnot
Created October 22, 2020 23:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evan-boissonnot/bde4eaaa5c403e2c802566bf31a81258 to your computer and use it in GitHub Desktop.
Save evan-boissonnot/bde4eaaa5c403e2c802566bf31a81258 to your computer and use it in GitHub Desktop.
Package.json for node with typescript
{
"name": "decouverte-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"ts-node-dev": "ts-node-dev",
"build": "tsc",
"dev": "ts-node-dev src/main.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "module",
"keywords": [
"ES",
"MODULES",
"NODE",
"MODULES",
"JS"
],
"author": "",
"license": "ISC",
"dependencies": {
"common-js": "^0.3.8",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/node": "^14.14.2",
"ts-node-dev": "^1.0.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment