mirror of
https://github.com/bendtherules/completion-viz.git
synced 2026-08-18 21:52:36 +00:00
68 lines
1.7 KiB
JSON
68 lines
1.7 KiB
JSON
{
|
|
"name": "completion-viz",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@reduxjs/toolkit": "^1.4.0",
|
|
"@testing-library/jest-dom": "^4.2.4",
|
|
"@testing-library/react": "^9.3.2",
|
|
"@testing-library/user-event": "^7.1.2",
|
|
"@types/jest": "^24.0.0",
|
|
"@types/node": "^12.0.0",
|
|
"@types/react": "^16.9.0",
|
|
"@types/react-dom": "^16.9.0",
|
|
"husky": "^4.3.0",
|
|
"lint-staged": "^10.4.0",
|
|
"prettier": "^2.1.2",
|
|
"prism-react-renderer": "^1.1.1",
|
|
"react": "^16.13.1",
|
|
"react-dom": "^16.13.1",
|
|
"react-scripts": "3.4.3",
|
|
"tailwindcss": "^1.7.6"
|
|
},
|
|
"devDependencies": {
|
|
"acorn": "^7.4.0",
|
|
"typescript": "~3.7.2"
|
|
},
|
|
"scripts": {
|
|
"build:tailwind": "tailwindcss build src/tailwind.css -o src/tailwind.output.css",
|
|
"prestart": "npm run build:tailwind",
|
|
"prebuild": "npm run build:tailwind",
|
|
"start": "react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test",
|
|
"eject": "react-scripts eject",
|
|
"lint": "eslint --ext js,jsx,ts,tsx",
|
|
"lint-all": "eslint --ext js,jsx,ts,tsx ./",
|
|
"prettier": "prettier -l",
|
|
"prettier-all": "prettier -l ./",
|
|
"prettier-fix-all": "prettier --write --ignore-unknown ./"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "react-app"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
|
|
"npm run lint",
|
|
"npm run prettier"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|