{
  "name": "project-name-app",
  "version": "1.0.0",
  "description": "",
  "main": "server.js",
  "engines": {
    "node": "14"
  },
  "scripts": {
    "dev": "run-p dev:client dev:server dev:storybook open:next watch:schema watch:gql-reqs watch:css dev:firestore",
    "predev": "run-p build:css build:schema check:env",
    "dev:client": "next dev",
    "dev:server": "node ./server.js",
    "build": "next build",
    "prebuild": "cross-env NODE_ENV=production npm run build:css",
    "build:css": "cross-env NODE_ENV=production postcss src/styles/tailwind.css -o src/styles/tailwind.output.css",
    "watch:css": "cross-env NODE_ENV=development postcss ./src/styles/tailwind.css -o ./src/styles/tailwind.output.css -w",
    "watch:schema": "chokidar \"./src/graphql/resolvers/**\" -c \"npm run build:schema\"",
    "build:schema": "ts-node --project ./scripts/tsconfig.json ./scripts/GenerateGraphSchema.ts",
    "postbuild:schema": "ts-node --project ./scripts/tsconfig.json ./scripts/GraphPrinter.ts",
    "watch:gql-reqs": "chokidar \"./src/graphql/functions/**/*.ts\" -c \"npm run generate:gql-reqs\"",
    "generate:gql-reqs": "rimraf src/types && apollo client:codegen --includes=./src/graphql/functions/**/*.ts --target=typescript --localSchemaFile=./src/graphql/schema.gql --outputFlat src/types",
    "postgenerate:gql-reqs": "graphql-codegen --config codegen.yml",
    "dev:storybook": "start-storybook -p 9009 --quiet",
    "build-storybook": "build-storybook",
    "open:next": "wait-on -d 25000 -i 2000 http://localhost:3000 && node ./scripts/OpenBrowser.js",
    "lint": "eslint \"src/**\" --fix",
    "check": "eslint \"src/**\" && tsc --noEmit",
    "check:env": "ts-node --project ./scripts/tsconfig.json ./scripts/CheckEnv.ts",
    "start": "next start",
    "deploy": "cross-env NODE_ENV=production firebase deploy --only functions,hosting --token",
    "deploy:skip-build": "cross-env NODE_ENV=production firebase deploy --only functions,hosting",
    "predeploy": "rimraf dist/ && npm run build",
    "dev:firestore": "run-p dev:firestore-emulators dev:firestore-import",
    "dev:firestore-emulators": "firebase emulators:start --only firestore",
    "dev:firestore-import": "wait-on -d 2000 http://localhost:4000 && cross-env FIRESTORE_EMULATOR_HOST=localhost:8080 dotenv -- firestore-import -b data.json -y",
    "cable:generate-store": "ts-node --project ./scripts/tsconfig.json ./scripts/GenerateStore.ts"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "@apollo/client": "^3.3.6",
    "@graphql-codegen/typescript-operations": "^1.17.13",
    "@klayver/poe-api-wrappers": "^2.1.0",
    "@material-ui/core": "^4.11.2",
    "@material-ui/icons": "^4.11.2",
    "@tippyjs/react": "^4.2.5",
    "@types/uuid": "^8.3.0",
    "apollo-link-error": "^1.1.13",
    "apollo-link-logger": "^2.0.0",
    "apollo-server-micro": "^2.19.1",
    "classcat": "^5.0.3",
    "cors": "^2.8.5",
    "date-fns": "^2.21.1",
    "deepmerge": "^4.2.2",
    "firebase-admin": "^8.13.0",
    "firebase-functions": "^3.13.0",
    "graphql": "^15.4.0",
    "lodash": "^4.17.20",
    "next": "^10.0.4",
    "react": "^17.0.1",
    "react-client-only": "^1.0.2",
    "react-custom-properties": "^1.2.0",
    "react-dom": "^17.0.1",
    "react-markdown": "^4.3.1",
    "react-weekly-schedule": "0.0.0-development",
    "reflect-metadata": "^0.1.13",
    "sass": "^1.32.11",
    "tailwindcss": "^2.1.1",
    "type-graphql": "^1.1.1",
    "typesaurus": "^7.1.0",
    "use-undo": "^1.0.3",
    "uuid": "^8.3.2",
    "wait-on": "^5.2.1"
  },
  "devDependencies": {
    "@babel/cli": "^7.12.10",
    "@babel/core": "^7.12.10",
    "@babel/plugin-proposal-class-properties": "^7.12.1",
    "@babel/preset-env": "^7.12.11",
    "@graphql-codegen/cli": "^1.20.0",
    "@graphql-codegen/typescript": "^1.20.0",
    "@storybook/addon-actions": "^6.1.11",
    "@storybook/addon-essentials": "^6.1.11",
    "@storybook/addon-links": "^6.1.11",
    "@storybook/react": "^6.1.11",
    "@tailwindcss/jit": "^0.1.18",
    "@types/cors": "^2.8.10",
    "@types/invariant": "^2.2.34",
    "@types/lodash": "^4.14.167",
    "@types/node": "^13.13.38",
    "@types/prompts": "^2.0.9",
    "@types/react": "^16.14.2",
    "@typescript-eslint/eslint-plugin": "^4.11.1",
    "@typescript-eslint/parser": "^4.11.1",
    "autoprefixer": "^10.1.0",
    "awesome-typescript-loader": "^5.2.1",
    "babel-loader": "^8.2.2",
    "babel-plugin-parameter-decorator": "^1.0.16",
    "babel-plugin-transform-decorators-legacy": "^1.3.5",
    "chokidar-cli": "^2.1.0",
    "colors": "^1.2.5",
    "cross-env": "^7.0.3",
    "cssnano": "^4.1.10",
    "dotenv": "^8.2.0",
    "dotenv-cli": "^4.0.0",
    "eslint": "^7.17.0",
    "eslint-config-prettier": "^7.1.0",
    "eslint-plugin-prettier": "^3.3.0",
    "eslint-plugin-react": "^7.22.0",
    "firebase-tools": "^9.1.0",
    "node-firestore-import-export": "^1.1.0",
    "npm-run-all": "^4.1.5",
    "postcss": "^8.2.2",
    "postcss-cli": "^8.3.1",
    "postcss-loader": "^4.1.0",
    "prompts": "^2.4.0",
    "react-docgen-typescript-loader": "^3.7.2",
    "react-docgen-typescript-webpack-plugin": "^1.1.0",
    "rimraf": "^3.0.2",
    "ts-node": "^9.1.1",
    "typescript": "^3.9.7"
  }
}
