{
  "name": "<%= name %>",
  "version": "0.0.1",
  "private": true,
  "scripts": {
    "dev": "NEXT_PUBLIC_APP_ENV=development next dev",
    "build": "next build",
    "start": "next start",
    "lint": "next lint",
    "prettier": "prettier -c --write '**/*'",
    "prepare": "husky install"
  },
  "dependencies": {
<% if (isBeta) { -%>
    "react-json-view": "^1.21.3",
<% } -%>
<% if (lib.includes('portkey-sdk')) { -%>
    "@portkey/contracts": "^1.3.0-alpha.1",
    "@portkey/did-ui-react": "1.4.4-alpha.5",
    "@portkey/detect-provider": "1.1.0-alpha.5",
    "@portkey/onboarding": "^1.4.3",
    "@portkey/provider-types": "1.1.0-alpha.5",
    "@portkey/types": "^1.3.0-alpha.1",
    "@portkey/utils": "^1.3.0-alpha.1",
<% } -%>
<% if (lib.includes('aelf-web-login')) { -%>
    "aelf-web-login": "1.1.4-alpha.4",
<% } -%>
<% if (lib.includes('aelf-sdk')) { -%>
    "aelf-sdk": "^3.2.40",
<% } -%>
    "@reduxjs/toolkit": "^1.9.5",
    "react-redux": "^8.0.5",
    "redux-persist": "^6.0.0",
    "next-redux-wrapper": "^8.1.0",
<% if (functionality.includes('sentry')) { -%>
    "@sentry/nextjs": "^7.19.0",
<% } -%>
<% if (functionality.includes('antd')) { -%>
    "antd": "^5.x",
<% } -%>
<% if (functionality.includes('firebase')) { -%>
    "firebase": "^9.23.0",
<% } -%>
    "axios": "^0.24.0",
    "next": "13.5.6",
    "react": "18.2.0",
    "react-dom": "18.2.0",
    "react-router-dom": "^6.3.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.0.2",
    "@commitlint/config-conventional": "^17.0.2",
    "@svgr/webpack": "^8.0.1",
    "@types/jest": "^26.0.15",
    "@types/node": "18.0.1",
    "@types/react": "18.0.14",
    "@types/react-dom": "18.0.5",
    "@typescript-eslint/eslint-plugin": "^5.30.4",
    "@typescript-eslint/parser": "^5.30.4",
<% if (functionality.includes('aelf-lint')) { -%>
    "aelf-lint": "0.0.1-alpha.1",
<% } -%>
    "autoprefixer": "^10.4.14",
    "next-babel-conditional-ssg-ssr": "^1.0.0",
    "next-compose-plugins": "^2.2.1",
    "eslint": "^8.23.1",
    "eslint-config-next": "12.2.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-react": "^7.31.8",
    "eslint-plugin-react-hooks": "^4.2.0",
    "eslint-plugin-tsdoc": "^0.2.17",
    "husky": "^8.0.3",
    "lint-staged": "13.2.2",

    "prettier": "^2.2.1",
    "stylelint": "^14.9.1",
    "stylelint-config-prettier": "^9.0.3",
    "stylelint-config-standard": "^26.0.0",
<% if (cssExtension.includes('tailwindcss')) { -%>
    "tailwindcss": "^3.3.2",
<% } -%>
<% if (cssExtension.includes('postcss') || cssExtension.includes('tailwindcss')) { -%>
    "postcss": "^8.4.23",
    "postcss-nested": "^6.0.1",
    "postcss-pxtorem": "^6.0.0",
<% } -%>
    "typescript": "4.7.4"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": [
      "eslint --cache --fix",
      "eslint --cache --ext .js,.jsx,.ts,.tsx"
    ],
    "*.{css,less}": "stylelint --fix"
  }
}
