A starting project to set up an HTML site set up with typescript
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

package.json 631 B

4 år sedan
4 år sedan
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. }