package.json 558 B

12345678910111213141516171819202122
  1. {
  2. "author": "Bruce Wilson",
  3. "description": "Simple math game built with TypeScript",
  4. "dependencies": {
  5. "systemjs": "~0.20"
  6. },
  7. "devDependencies": {
  8. "http-server": "^0.9.0",
  9. "tslint": "^5.11.0",
  10. "typescript": "~2.2.1"
  11. },
  12. "license": "ISC",
  13. "main": "index.js",
  14. "name": "Pluralsight-GettingStartedWithTypeScript",
  15. "scripts": {
  16. "clean": "rm -fr js/* all/*.js",
  17. "compile": "rm -fr js/* && cd app && npx tsc",
  18. "start": "http-server",
  19. "watch": "rm -fr js/* && cd app && npx tsc --watch"
  20. },
  21. "version": "2.0.0"
  22. }