A starting project to set up an HTML site set up with typescript
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 631 B

4 years ago
4 years ago
1234567891011121314151617181920212223
  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. "dependencies": {
  21. "sweetalert2": "^10.16.7"
  22. }
  23. }