accords-library.com/package.json

86 lines
2.9 KiB
JSON
Raw Normal View History

2021-11-03 22:46:45 +00:00
{
"name": "accords-library.com",
"private": true,
"scripts": {
2022-05-07 09:35:53 +00:00
"dev": "next dev -p 12499",
"precommit": "npm run fetch-local-data && npm run prettier && npm run unused-exports && npm run eslint && npm run tsc && echo ALL PRECOMMIT CHECKS PASSED SUCCESSFULLY, LET\\'S FUCKING GO!",
2022-06-24 23:25:45 +00:00
"unused-exports": "ts-unused-exports ./tsconfig.json --excludePathsFromReport=src/pages --ignoreFiles=generated",
"fetch-local-data": "npm run generate && esrun src/graphql/fetchLocalData.ts --esrun",
"prebuild": "npm run fetch-local-data",
2022-05-07 09:51:00 +00:00
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
2022-05-07 09:35:53 +00:00
"start": "next start -p 12500",
"lint": "next lint",
2022-07-07 23:42:38 +00:00
"eslint": "npx eslint .",
"generate": "graphql-codegen --config graphql-codegen.config.js",
2022-05-07 09:35:53 +00:00
"tsc": "tsc",
"prettier": "prettier --end-of-line auto --write ."
2021-11-03 22:46:45 +00:00
},
"dependencies": {
2022-03-28 20:27:56 +00:00
"@fontsource/opendyslexic": "^4.5.4",
2022-08-12 22:52:18 +00:00
"@fontsource/share-tech-mono": "^4.5.9",
2023-01-25 17:50:11 +00:00
"@fontsource/vollkorn": "^4.5.14",
"@fontsource/zen-maru-gothic": "^4.5.16",
2022-03-13 13:54:56 +00:00
"@tippyjs/react": "^4.2.6",
2022-10-29 19:34:20 +00:00
"autoprefixer": "^10.4.13",
2022-10-29 20:01:38 +00:00
"cuid": "^2.1.8",
2023-01-25 17:50:11 +00:00
"isomorphic-dompurify": "^0.26.0",
"jotai": "^1.13.1",
"markdown-to-jsx": "^7.1.8",
2023-01-25 17:50:11 +00:00
"marked": "^4.2.12",
"material-symbols": "^0.4.2",
"meilisearch": "^0.30.0",
2023-01-25 17:50:11 +00:00
"next": "^13.1.5",
"nodemailer": "^6.9.0",
"rc-slider": "^10.1.0",
2022-06-24 23:33:13 +00:00
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hotkeys-hook": "^3.4.7",
"react-swipeable": "^7.0.0",
2023-01-25 17:50:11 +00:00
"react-zoom-pan-pinch": "^2.2.1",
2022-08-28 11:42:31 +00:00
"string-natural-compare": "^3.0.1",
2022-08-21 00:37:22 +00:00
"throttle-debounce": "^5.0.0",
2022-07-07 23:42:38 +00:00
"tippy.js": "^6.3.7",
"turndown": "^7.1.1",
2023-01-25 17:50:11 +00:00
"ua-parser-js": "^1.0.33",
"usehooks-ts": "^2.9.1",
"zod": "^3.20.2"
2021-11-03 22:46:45 +00:00
},
"devDependencies": {
2023-01-25 17:50:11 +00:00
"@digitak/esrun": "^3.2.18",
"@graphql-codegen/cli": "^2.16.4",
"@graphql-codegen/typescript": "2.8.7",
"@graphql-codegen/typescript-graphql-request": "^4.5.8",
"@graphql-codegen/typescript-operations": "^2.5.12",
"@types/marked": "^4.0.8",
"@types/node": "18.11.18",
"@types/nodemailer": "^6.4.7",
2023-01-25 17:50:11 +00:00
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
2022-08-28 11:42:31 +00:00
"@types/string-natural-compare": "^3.0.2",
2022-08-21 00:37:22 +00:00
"@types/throttle-debounce": "^5.0.0",
"@types/turndown": "^5.0.1",
"@types/ua-parser-js": "^0.7.36",
2023-01-25 17:50:11 +00:00
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
2022-10-16 22:44:25 +00:00
"dotenv": "^16.0.3",
2023-01-25 17:50:11 +00:00
"eslint": "^8.32.0",
"eslint-config-next": "13.1.5",
"eslint-plugin-import": "^2.27.5",
2022-08-21 00:37:22 +00:00
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
2023-01-25 17:50:11 +00:00
"next-sitemap": "^3.1.47",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"tailwindcss": "^3.2.4",
2023-01-25 17:50:11 +00:00
"ts-unused-exports": "^9.0.2",
"typescript": "^4.9.4"
2022-09-25 20:36:52 +00:00
},
"overrides": {
"react-zoom-pan-pinch": {
"react": "$react",
"react-dom": "$react-dom"
}
2021-11-03 22:46:45 +00:00
}
}