A starting project to set up an HTML site set up with typescript
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920
  1. {
  2. "name": "basic-html-with-typescript-boilerplate",
  3. "version": "1.0.0",
  4. "description": "A starting project to set up an HTML site set up with Typescript",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "watch": "tsc -w"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git@code.webtrigon.com:adwaith/basic-html-with-typescript-boilerplate.git"
  13. },
  14. "author": "Adwaith Rao P, Webtrigon Technologies Pvt. Ltd.",
  15. "license": "MIT",
  16. "devDependencies": {
  17. "tslint": "^6.1.3",
  18. "typescript": "^4.2.4"
  19. }
  20. }