package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@mightyplow/simple-calorie-tracker",
  3. "version": "1.0.0",
  4. "description": "A simple web app to track calories.",
  5. "main": "index.js",
  6. "scripts": {
  7. "clean": "rm -rf ./dist",
  8. "eslint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
  9. "prebuild": "npm run clean",
  10. "build": "parcel build -d dist --public-url / ./src/index.html",
  11. "predev": "npm run clean",
  12. "dev": "parcel serve -d dist --public-url / ./src/index.html",
  13. "test": "echo \"Error: no test specified\" && exit 1"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://git.mightyplow.net/mightyplow/simple-calorie-tracker"
  18. },
  19. "keywords": [
  20. "webapp",
  21. "calories",
  22. "fitness",
  23. "app",
  24. "web"
  25. ],
  26. "author": "mightyplow@gmail.com",
  27. "license": "UNLICENSED",
  28. "dependencies": {
  29. "typescript": "^3.7.2"
  30. },
  31. "devDependencies": {
  32. "@types/react": "^16.9.11",
  33. "@types/react-dom": "^16.9.4",
  34. "@typescript-eslint/eslint-plugin": "^2.7.0",
  35. "@typescript-eslint/parser": "^2.7.0",
  36. "eslint": "^6.6.0",
  37. "eslint-config-standard": "^14.1.0",
  38. "eslint-plugin-import": "^2.18.2",
  39. "eslint-plugin-node": "^10.0.0",
  40. "eslint-plugin-promise": "^4.2.1",
  41. "eslint-plugin-react": "^7.16.0",
  42. "eslint-plugin-standard": "^4.0.1",
  43. "parcel-bundler": "^1.12.4",
  44. "react": "^16.11.0",
  45. "react-dom": "^16.11.0"
  46. }
  47. }