excalidraw/package.json
2020-01-04 12:47:12 -08:00

44 lines
1.0 KiB
JSON

{
"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",
"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"]
}
}