1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- {
- "name": "atlas",
- "private": true,
- "workspaces": [
- "packages/*"
- ],
- "scripts": {
- "start": "concurrently \"yarn dev\" \"yarn storybook\"",
- "build": "lerna run build",
- "dev": "lerna run --parallel dev",
- "storybook": "lerna run --scope @joystream/components --stream storybook",
- "lint": "yarn run eslint . --ext .js,.jsx,.ts,.tsx",
- "clean": "lerna clean && rm -rf node_modules",
- "test": "jest"
- },
- "lint-staged": {
- "*.{ts, tsx, js, jsx, json}": [
- "prettier --write"
- ]
- },
- "devDependencies": {
- "@babel/core": "^7.8.7",
- "@babel/plugin-transform-runtime": "^7.10.1",
- "@babel/preset-env": "^7.8.7",
- "@babel/preset-react": "^7.8.3",
- "@babel/preset-typescript": "^7.9.0",
- "@emotion/babel-preset-css-prop": "^10.0.27",
- "@fortawesome/fontawesome-svg-core": "^1.2.28",
- "@fortawesome/free-solid-svg-icons": "^5.13.0",
- "@fortawesome/react-fontawesome": "^0.1.9",
- "@parcel/transformer-svg-react": "^2.0.0-nightly.1739",
- "@rollup/plugin-babel": "^5.0.3",
- "@rollup/plugin-commonjs": "^11.0.2",
- "@rollup/plugin-node-resolve": "^7.1.1",
- "@storybook/addon-actions": "^5.3.17",
- "@storybook/addon-docs": "^5.3.17",
- "@storybook/addon-knobs": "^5.3.17",
- "@storybook/addon-links": "^5.3.17",
- "@storybook/addon-storysource": "^5.3.17",
- "@storybook/addons": "^5.3.19",
- "@storybook/react": "^5.3.17",
- "@storybook/theming": "^5.3.19",
- "@svgr/rollup": "^5.4.0",
- "@svgr/webpack": "^5.4.0",
- "@types/reach__router": "^1.3.5",
- "@types/react": "^16.9.36",
- "@types/react-dom": "^16.9.8",
- "@types/react-redux": "^7.1.9",
- "@types/redux": "^3.6.0",
- "@typescript-eslint/eslint-plugin": "^3.5.0",
- "@typescript-eslint/parser": "^3.2.0",
- "babel-core": "^6.26.3",
- "babel-loader": "^8.0.6",
- "babel-plugin-transform-export-extensions": "^6.22.0",
- "babel-preset-env": "^1.7.0",
- "babel-preset-react": "^6.24.1",
- "chromatic": "^4.0.3",
- "concurrently": "^5.2.0",
- "csstype": "^2.6.10",
- "enzyme": "^3.11.0",
- "enzyme-adapter-react-16": "^1.15.2",
- "eslint": "^7.2.0",
- "eslint-config-prettier": "^6.11.0",
- "eslint-plugin-jsx-a11y": "^6.2.3",
- "eslint-plugin-prettier": "^3.1.3",
- "eslint-plugin-react": "^7.20.3",
- "eslint-plugin-react-hooks": "^4.0.4",
- "husky": "^4.2.5",
- "jest": "^26.0.1",
- "lerna": "^3.20.2",
- "lint-staged": "^10.2.7",
- "parcel": "^2.0.0-alpha.3.2",
- "prettier": "^2.0.5",
- "react-docgen-typescript-loader": "^3.7.1",
- "rollup": "^2.1.0",
- "rollup-plugin-babel": "^4.4.0",
- "rollup-plugin-peer-deps-external": "^2.2.2",
- "rollup-plugin-typescript2": "^0.26.0",
- "storybook-addon-jsx": "^7.1.15",
- "ts-loader": "^6.2.1",
- "typescript": "^3.8.3"
- }
- }
|