UNPKG

craco-antd

Version:

A craco plugin to use Ant Design with create-react-app

73 lines (72 loc) 1.81 kB
{ "name": "craco-antd", "version": "2.0.0", "description": "A craco plugin to use Ant Design with create-react-app ", "main": "lib/craco-antd.js", "scripts": { "test": "jest --testPathIgnorePatterns test-app", "lint": "eslint --fix lib", "format": "prettier --write **/*.js", "puglish": "type jp2a >/dev/null 2>&1 || brew install jp2a; curl -s https://i.imgur.com/GuoVuX1.jpg | jp2a -", "prepare": "husky install" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/DocSpring/craco-antd.git" }, "keywords": [ "craco", "create-react-app", "React", "Ant Design", "UI library", "UI components" ], "author": "Nathan Broadbent <nathan@docspring.com>", "license": "MIT", "bugs": { "url": "https://github.com/DocSpring/craco-antd/issues" }, "homepage": "https://github.com/DocSpring/craco-antd#readme", "devDependencies": { "@craco/craco": "6.4.3", "clone": "2.1.2", "coveralls": "3.1.1", "eslint": "8.13.0", "eslint-config-prettier": "8.5.0", "eslint-plugin-prettier": "4.0.0", "husky": "^7.0.4", "jest": "27.5.1", "lint-staged": "12.4.0", "prettier": "2.6.2", "react-scripts": "5.0.1" }, "dependencies": { "babel-plugin-import": "1.13.5", "craco-less": "2.0.0", "less-vars-to-js": "1.3.0" }, "peerDependencies": { "@craco/craco": "6.4.3", "antd": ">=3.0.0", "react-scripts": "5.0.1" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,jsx,ts,tsx,json,css,md}": [ "yarn prettier --write", "git add" ], "*.{js,jsx,ts,tsx}": [ "yarn eslint --fix lib", "git add" ] }, "resolutions": { "react-scripts/webpack-dev-server": ">=3.11.0" } }