logos-press-engine/package.json

74 lines
2.2 KiB
JSON
Raw Normal View History

2023-04-14 14:29:32 +00:00
{
"name": "lpe-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
2023-04-19 12:15:21 +00:00
"lint": "next lint",
"prepare": "husky install",
"codegen": "dotenv -e ./.env -c -- yarn graphql-code-generator --debug --verbose ./codegen.ts",
"codegen:watch": "dotenv -e ./.env -c -- yarn graphql-code-generator --debug --verbose --watch ./codegen.ts",
"codegenx": "dotenv -e ./.env -c -- yarn graphql-code-generator --debug --verbose ./codegen.ts",
"codegenx:watch": "dotenv -e ./.env -c -- yarn graphql-code-generator --debug --verbose ./codegen.ts"
2023-04-14 14:29:32 +00:00
},
2023-04-19 11:19:45 +00:00
"lint-staged": {
2023-04-19 12:15:21 +00:00
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
2023-04-19 11:19:45 +00:00
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
2023-04-14 14:29:32 +00:00
"dependencies": {
2023-08-01 15:36:41 +00:00
"@acid-info/lsd-react": "^0.1.0-alpha.17",
"@apollo/client": "^3.7.17",
2023-04-18 12:29:54 +00:00
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
2023-04-14 14:39:40 +00:00
"@hookstate/core": "^4.0.1",
2023-08-01 15:36:41 +00:00
"@hookstate/localstored": "^4.0.2",
2023-04-14 14:39:40 +00:00
"@tanstack/react-query": "^4.29.1",
2023-04-14 14:29:32 +00:00
"@types/node": "18.15.11",
"@types/react": "18.0.35",
"@types/react-dom": "18.0.11",
2023-05-10 12:29:16 +00:00
"@vercel/og": "^0.5.4",
"axios": "^1.4.0",
2023-05-08 00:12:38 +00:00
"clsx": "^1.2.1",
"cross-fetch": "^4.0.0",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
2023-04-14 14:29:32 +00:00
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"graphql": "^16.7.1",
"graphql-request": "^6.0.0",
2023-04-14 14:29:32 +00:00
"next": "13.3.0",
"next-query-params": "^4.2.3",
2023-05-13 17:27:14 +00:00
"nextjs-progressbar": "^0.0.16",
2023-04-14 14:29:32 +00:00
"react": "18.2.0",
2023-05-14 08:36:29 +00:00
"react-blurhash": "^0.3.0",
2023-04-14 14:29:32 +00:00
"react-dom": "18.2.0",
2023-05-12 16:12:49 +00:00
"react-imgix": "^9.7.0",
2023-08-02 14:18:50 +00:00
"react-player": "^2.12.0",
2023-08-22 13:46:05 +00:00
"react-use": "^17.4.0",
"typescript": "5.0.4",
"use-query-params": "^2.2.1"
2023-04-19 11:17:12 +00:00
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/client-preset": "4.1.0",
"@graphql-codegen/introspection": "4.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-resolvers": "^4.0.1",
"@parcel/watcher": "^2.2.0",
2023-05-12 16:12:49 +00:00
"@types/react-imgix": "^9.5.0",
"dotenv-cli": "^7.2.1",
2023-04-19 11:19:45 +00:00
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
2023-04-19 11:17:12 +00:00
"prettier": "^2.8.7"
2023-04-14 14:29:32 +00:00
}
}