Skip to content
Snippets Groups Projects
This project manages its dependencies using npm. Learn more
package.json 1.39 KiB
{
  "name": "oetzi-backend",
  "version": "0.1.0",
  "description": "Ötzi game frontend.",
  "license": "MIT",
  "scripts": {
    "serve": "parcel serve src/index.html",
    "build": "parcel build src/index.html --public-url ./",
    "lint:check": "eslint .",
    "lint:fix": "eslint . --fix",
    "format:check": "prettier . --check",
    "format:fix": "prettier . --write",
    "style:check": "npm-run-all --serial format:check lint:check",
    "style:fix": "npm-run-all --serial format:fix lint:fix",
    "test": "jest",
    "coverage": "jest --coverage",
    "watch:test": "jest --watch"
  },
  "dependencies": {
    "axios": "^0.26.0",
    "eslint": "^8.1.0",
    "phaser": "^3.55.2"
  },
  "devDependencies": {
    "@types/jest": "^27.0.3",
    "@typescript-eslint/eslint-plugin": "^5.5.0",
    "@typescript-eslint/parser": "^5.5.0",
    "eslint": "^8.3.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-jest": "^25.3.0",
    "eslint-plugin-prettier": "^4.0.0",
    "jest": "^27.4.2",
    "node-notifier": "^10.0.1",
    "parcel-bundler": "^1.12.4",
    "parcel-plugin-static-files-copy": "^2.6.0",
    "prettier": "^2.5.1",
    "ts-jest": "^27.0.7",
    "ts-node": "^10.5.0",
    "typescript": "^4.5.2"
  },
  "engines": {
    "node": "16.x"
  },
  "repository": {
    "url": "https://gitlab.inf.unibz.it/commul/oetzi"
  },
  "staticFiles": {
    "staticPath": "public",
    "watcherGlob": "**"
  }
}