2020-01-02 02:04:47 +01:00
|
|
|
{
|
|
|
|
"name": "react",
|
2020-01-03 20:59:33 +01:00
|
|
|
"homepage": "https://www.excalidraw.com",
|
2020-01-02 02:04:47 +01:00
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "",
|
|
|
|
"keywords": [],
|
|
|
|
"main": "src/index.js",
|
|
|
|
"dependencies": {
|
2020-01-03 21:32:29 +01:00
|
|
|
"lodash": "4.17.15",
|
2020-01-02 02:04:47 +01:00
|
|
|
"react": "16.12.0",
|
|
|
|
"react-dom": "16.12.0",
|
2020-01-02 20:03:48 +01:00
|
|
|
"react-scripts": "3.3.0",
|
2020-01-02 02:04:47 +01:00
|
|
|
"roughjs": "3.1.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-01-02 20:03:48 +01:00
|
|
|
"@types/react": "16.9.17",
|
|
|
|
"@types/react-dom": "16.9.4",
|
2020-01-03 17:45:06 +01:00
|
|
|
"gh-pages": "2.1.1",
|
2020-01-02 20:03:48 +01:00
|
|
|
"husky": "3.1.0",
|
|
|
|
"lint-staged": "9.5.0",
|
|
|
|
"prettier": "1.19.1",
|
|
|
|
"typescript": "3.7.4"
|
2020-01-02 02:04:47 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"start": "react-scripts start",
|
|
|
|
"build": "react-scripts build",
|
2020-01-03 21:59:36 +01:00
|
|
|
"test": "react-scripts test --env=jsdom --passWithNoTests",
|
2020-01-03 22:11:01 +01:00
|
|
|
"eject": "react-scripts eject",
|
2020-01-03 20:59:33 +01:00
|
|
|
"deploy": "react-scripts build && gh-pages -d build"
|
2020-01-02 02:04:47 +01:00
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not ie <= 11",
|
|
|
|
"not op_mini all"
|
2020-01-02 20:03:48 +01:00
|
|
|
],
|
|
|
|
"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"
|
|
|
|
]
|
|
|
|
}
|
2020-01-03 21:32:29 +01:00
|
|
|
}
|