|
| 1 | +{ |
| 2 | + "name": "reablocks", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "Low level component building blocks for React", |
| 5 | + "scripts": { |
| 6 | + "build": "rollup -c", |
| 7 | + "prettier": "prettier --loglevel warn --write 'src/**/*.{ts,tsx,js,jsx}'", |
| 8 | + "start": "start-storybook -p 9009", |
| 9 | + "build-storybook": "build-storybook", |
| 10 | + "lint": "eslint --ext js,ts,tsx", |
| 11 | + "lint:fix": "eslint --ext js,ts,tsx --fix src", |
| 12 | + "lint:prettier": "prettier --loglevel warn --write 'src/**/*.{ts,tsx,js,jsx}'" |
| 13 | + }, |
| 14 | + "source": "src/index.ts", |
| 15 | + "main": "dist/index.cjs.js", |
| 16 | + "module": "dist/index.esm.js", |
| 17 | + "browser": "dist/index.js", |
| 18 | + "style": "dist/index.css", |
| 19 | + "typings": "dist/index.d.ts", |
| 20 | + "repository": { |
| 21 | + "type": "git", |
| 22 | + "url": "git+https://github.com/reaviz/reablocks.git" |
| 23 | + }, |
| 24 | + "files": [ |
| 25 | + "dist" |
| 26 | + ], |
| 27 | + "keywords": [ |
| 28 | + "react", |
| 29 | + "reactjs", |
| 30 | + "tree" |
| 31 | + ], |
| 32 | + "license": "Apache-2.0", |
| 33 | + "bugs": { |
| 34 | + "url": "https://github.com/reaviz/reablocks/issues" |
| 35 | + }, |
| 36 | + "homepage": "https://github.com/reaviz/reablocks#readme", |
| 37 | + "dependencies": { |
| 38 | + "classnames": "^2.3.1", |
| 39 | + "framer-motion": "^6.2.8" |
| 40 | + }, |
| 41 | + "peerDependencies": { |
| 42 | + "react": ">=16", |
| 43 | + "react-dom": ">=16" |
| 44 | + }, |
| 45 | + "devDependencies": { |
| 46 | + "@storybook/addon-essentials": "6.4.20", |
| 47 | + "@storybook/addon-storysource": "^6.4.20", |
| 48 | + "@storybook/addons": "6.4.20", |
| 49 | + "@storybook/react": "6.4.20", |
| 50 | + "@storybook/theming": "6.4.20", |
| 51 | + "@types/classnames": "^2.3.1", |
| 52 | + "@types/lodash": "^4.14.178", |
| 53 | + "@types/react": "^17.0.43", |
| 54 | + "@types/react-dom": "^17.0.14", |
| 55 | + "@typescript-eslint/eslint-plugin": "^4.32.0", |
| 56 | + "@typescript-eslint/parser": "^4.32.0", |
| 57 | + "autoprefixer": "^9", |
| 58 | + "chromatic": "^6.5.3", |
| 59 | + "eslint": "^7.32.0", |
| 60 | + "eslint-config-prettier": "^8.3.0", |
| 61 | + "eslint-plugin-react": "^7.28.0", |
| 62 | + "eslint-plugin-react-hooks": "^4.3.0", |
| 63 | + "eslint-plugin-storybook": "^0.5.7", |
| 64 | + "framer-motion": "^4.1.17", |
| 65 | + "husky": "^4.2.5", |
| 66 | + "lint-staged": "^10.5.4", |
| 67 | + "postcss-nested": "^4", |
| 68 | + "postcss-preset-env": "^6.7.0", |
| 69 | + "prettier": "^2.6.2", |
| 70 | + "react": "^18.0.0", |
| 71 | + "react-dom": "^18.0.0", |
| 72 | + "rollup": "^2.29.0", |
| 73 | + "rollup-plugin-commonjs": "10.1.0", |
| 74 | + "rollup-plugin-node-resolve": "5.2.0", |
| 75 | + "rollup-plugin-peer-deps-external": "2.2.3", |
| 76 | + "rollup-plugin-postcss": "3.1.3", |
| 77 | + "rollup-plugin-postcss-modules": "2.0.1", |
| 78 | + "rollup-plugin-sourcemaps": "0.6.3", |
| 79 | + "rollup-plugin-typescript2": "0.26.0", |
| 80 | + "storybook-css-modules-preset": "^1.1.1", |
| 81 | + "storybook-dark-mode": "^1.0.9", |
| 82 | + "typescript": "^4.1.3" |
| 83 | + }, |
| 84 | + "prettier": { |
| 85 | + "semi": true, |
| 86 | + "singleQuote": true, |
| 87 | + "trailingComma": "none", |
| 88 | + "arrowParens": "avoid", |
| 89 | + "bracketSpacing": true, |
| 90 | + "jsxBracketSameLine": false, |
| 91 | + "printWidth": 80 |
| 92 | + }, |
| 93 | + "lint-staged": { |
| 94 | + "src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [ |
| 95 | + "prettier --write", |
| 96 | + "git add" |
| 97 | + ] |
| 98 | + }, |
| 99 | + "husky": { |
| 100 | + "hooks": { |
| 101 | + "pre-commit": "lint-staged" |
| 102 | + } |
| 103 | + } |
| 104 | +} |
0 commit comments