{ "name": "react", "homepage": "https://www.excalidraw.com", "version": "1.0.0", "description": "", "keywords": [], "main": "src/index.js", "dependencies": { "lodash": "4.17.15", "react": "16.12.0", "react-dom": "16.12.0", "react-scripts": "3.3.0", "roughjs": "3.1.0" }, "devDependencies": { "@types/react": "16.9.17", "@types/react-dom": "16.9.4", "gh-pages": "2.1.1", "husky": "3.1.0", "lint-staged": "9.5.0", "prettier": "1.19.1", "typescript": "3.7.4" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test --env=jsdom --passWithNoTests", "eject": "react-scripts eject", "deploy": "react-scripts build && gh-pages -d build" }, "browserslist": [ ">0.2%", "not dead", "not ie <= 11", "not op_mini all" ], "eslintConfig": { "extends": "react-app" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,css,json,md,ts,tsx}": [ "prettier --write", "git add" ], "*.{js,ts,tsx}": [ "eslint" ] } }