package.json 688 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "weather-station",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "ts-mocha src/**/*.test.ts",
  8. "clean": "rm -rf build",
  9. "build": "webpack --mode=development"
  10. },
  11. "keywords": [],
  12. "author": "Jason Tarka <git@tarka.ca>",
  13. "license": "",
  14. "dependencies": {
  15. "@types/firebase": "^3.2.1",
  16. "chart.js": "^3.7.0",
  17. "firebase": "^9.6.1"
  18. },
  19. "devDependencies": {
  20. "@types/mocha": "^9.0.0",
  21. "@types/should": "^13.0.0",
  22. "mocha": "^8.4.0",
  23. "should": "^13.2.3",
  24. "ts-loader": "^9.2.6",
  25. "ts-mocha": "^8.0.0",
  26. "ts-node": "^10.4.0",
  27. "typescript": "^4.5.4",
  28. "webpack-cli": "^4.9.1"
  29. }
  30. }