Listory/frontend/package.json

53 lines
1.4 KiB
JSON
Raw Normal View History

2020-01-26 19:07:15 +01:00
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fullhuman/postcss-purgecss": "^2.1.2",
2020-01-26 19:07:15 +01:00
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
2020-01-26 19:07:15 +01:00
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.37",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"autoprefixer": "^9.7.6",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
2020-01-26 19:07:15 +01:00
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"tailwindcss": "^1.4.2",
"typescript": "^3.7.5"
2020-01-26 19:07:15 +01:00
},
"scripts": {
"build:tailwind": "postcss src/tailwind.css -o src/tailwind/generated.css",
"watch:tailwind": "postcss -w src/tailwind.css -o src/tailwind/generated.css",
"start": "run-p start:react watch:tailwind",
"start:react": "react-scripts start",
"prebuild": "npm run build:tailwind",
2020-01-26 19:07:15 +01:00
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/react-router-dom": "^5.1.5"
2020-01-26 19:07:15 +01:00
}
}