12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "name": "@mightyplow/simple-calorie-tracker",
- "version": "1.0.0",
- "description": "A simple web app to track calories.",
- "main": "index.js",
- "scripts": {
- "clean": "rm -rf ./dist",
- "eslint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
- "prebuild": "npm run clean",
- "build": "parcel build -d dist --public-url ./ ./src/index.html",
- "predev": "npm run clean",
- "dev": "parcel serve -d dist --public-url / ./src/index.html",
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "repository": {
- "type": "git",
- "url": "https://git.mightyplow.net/mightyplow/simple-calorie-tracker"
- },
- "keywords": [
- "webapp",
- "calories",
- "fitness",
- "app",
- "web"
- ],
- "author": "mightyplow@gmail.com",
- "license": "UNLICENSED",
- "dependencies": {
- "typescript": "^3.7.2"
- },
- "devDependencies": {
- "@types/node": "^12.12.7",
- "@types/react": "^16.9.11",
- "@types/react-dom": "^16.9.4",
- "@types/webpack-env": "^1.14.1",
- "@typescript-eslint/eslint-plugin": "^2.7.0",
- "@typescript-eslint/parser": "^2.7.0",
- "eslint": "^6.6.0",
- "eslint-config-standard": "^14.1.0",
- "eslint-plugin-import": "^2.18.2",
- "eslint-plugin-node": "^10.0.0",
- "eslint-plugin-promise": "^4.2.1",
- "eslint-plugin-react": "^7.16.0",
- "eslint-plugin-standard": "^4.0.1",
- "parcel-bundler": "^1.12.4",
- "react": "^16.11.0",
- "react-dom": "^16.11.0"
- }
- }
|