Files
TheGame/packages/web/package.json
Hammad Jutt 0f9c790351 Setup Design System with NextJS Web App
Also replaced the local fonts with Google fonts since they are more performant and easier to package. Created a custom
Link component to render the ChakraUI link inside the NextJS Link properly.
2020-07-26 19:56:11 -06:00

28 lines
610 B
JSON

{
"name": "@metafam/web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next",
"build": "next build && next export",
"start": "next start",
"typecheck": "tsc",
"precommit": "yarn lint-staged"
},
"dependencies": {
"@metafam/ds": "0.1.0",
"graphql": "^15.0.0",
"isomorphic-unfetch": "^3.0.0",
"next": "latest",
"next-google-fonts": "^1.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"urql": "^1.9.7"
},
"devDependencies": {
"@types/node": "^14.0.23",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8"
}
}