123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "name": "react",
- "homepage": "https://www.excalidraw.com",
- "version": "1.0.0",
- "description": "",
- "keywords": [],
- "main": "src/index.js",
- "dependencies": {
- "react": "16.12.0",
- "react-color": "^2.17.3",
- "react-dom": "16.12.0",
- "react-scripts": "3.3.0",
- "roughjs": "3.1.0"
- },
- "devDependencies": {
- "@types/react": "16.9.17",
- "@types/react-color": "^3.0.1",
- "@types/react-dom": "16.9.4",
- "husky": "3.1.0",
- "lint-staged": "9.5.0",
- "node-sass": "^4.13.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"
- },
- "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"
- ]
- }
- }
|