Skip to content
Snippets Groups Projects
Select Git revision
  • 0dff9a36041968dac9dcfa391e7e9ca5c40540b4
  • main default protected
2 results

package.json

Blame
  • This project manages its dependencies using npm. Learn more
    package.json 907 B
    {
      "name": "calculator",
      "version": "0.1.0",
      "license": "MIT",
      "homepage": "http://ahfarmer.github.io/calculator",
      "devDependencies": {
        "chai": "^4.2.0",
        "gh-pages": "^2.0.1",
        "prettier": "^1.17.1",
        "react-scripts": "^3.0.1"
      },
      "dependencies": {
        "big.js": "^5.2.2",
        "cypress": "^10.3.0",
        "github-fork-ribbon-css": "^0.2.1",
        "react": "^16.8.6",
        "react-dom": "^16.8.6"
      },
      "scripts": {
        "start": "react-scripts start",
        "build": "react-scripts build",
        "test": "react-scripts test --env=jsdom",
        "eject": "react-scripts eject",
        "deploy": "gh-pages -d build"
      },
      "prettier": {
        "trailingComma": "all"
      },
      "browserslist": {
        "production": [
          ">0.2%",
          "not dead",
          "not op_mini all"
        ],
        "development": [
          "last 1 chrome version",
          "last 1 firefox version",
          "last 1 safari version"
        ]
      }
    }