Files
TheGame/packages/design-system/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

35 lines
933 B
JSON

{
"name": "@metafam/ds",
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "yarn build",
"typecheck": "yarn build",
"dev": "tsc -w",
"build": "tsc",
"precommit": "yarn lint-staged"
},
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"emotion-theming": "^10.0.27"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-docs": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^5.3.19",
"babel-loader": "^8.1.0",
"fork-ts-checker-webpack-plugin": "^5.0.9",
"ts-loader": "^8.0.1"
}
}