package.json 618 B

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