1
0
mirror of https://github.com/excalidraw/excalidraw.git synced 2024-11-10 11:35:52 +01:00
excalidraw/package.json

53 lines
1.0 KiB
JSON
Raw Normal View History

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": {
"react": "16.12.0",
"react-dom": "16.12.0",
"react-scripts": "3.3.0",
2020-01-02 02:04:47 +01:00
"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",
2020-01-04 19:14:12 +01:00
"node-sass": "^4.13.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",
"test": "react-scripts test --env=jsdom --passWithNoTests",
2020-01-03 22:43:41 +01:00
"eject": "react-scripts eject"
2020-01-02 02:04:47 +01:00
},
2020-01-04 21:53:45 +01:00
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
2020-01-04 21:53:45 +01:00
"*.{js,css,json,md,ts,tsx}": [
"prettier --write",
"git add"
],
"*.{js,ts,tsx}": [
"eslint"
]
}
2020-01-03 22:13:41 +01:00
}