mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-30 03:03:06 -05:00
* feat(client): basic Storybook setup
* Revert "feat(client): basic Storybook setup"
This reverts commit f55e249326.
* feat(tools): create ui-components package and setup Storybook
* Add ui-components to lerna.json
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "@freecodecamp/ui",
|
|
"version": "0.0.1",
|
|
"author": "freeCodeCamp <team@freecodecamp.org>",
|
|
"license": "BSD-3-Clause",
|
|
"description": "The freeCodeCamp.org open-source UI components",
|
|
"main": "index.js",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">= 14.0.0",
|
|
"npm": "^6.14.12"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/freeCodeCamp/freeCodeCamp.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/freeCodeCamp/freeCodeCamp/issues"
|
|
},
|
|
"homepage": "https://github.com/freeCodeCamp/freeCodeCamp#readme",
|
|
"dependencies": {
|
|
"react": "16.14.0",
|
|
"react-dom": "16.14.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.14.0",
|
|
"@storybook/addon-actions": "^6.2.9",
|
|
"@storybook/addon-essentials": "^6.2.9",
|
|
"@storybook/addon-links": "^6.2.9",
|
|
"@storybook/addon-postcss": "^2.0.0",
|
|
"@storybook/react": "^6.2.9",
|
|
"babel-loader": "^8.2.2"
|
|
},
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"storybook": "start-storybook -p 6006",
|
|
"build-storybook": "build-storybook"
|
|
}
|
|
}
|