Listory/frontend/package.json

64 lines
1.7 KiB
JSON
Raw Normal View History

2020-01-26 19:07:15 +01:00
{
2020-05-03 20:57:03 +02:00
"name": "@listory/frontend",
2020-01-26 19:07:15 +01:00
"version": "0.1.0",
"private": true,
2020-05-03 20:57:03 +02:00
"author": {
"name": "Julian Tölle",
"email": "julian.toelle97@gmail.com"
},
"license": "MIT",
2020-01-26 19:07:15 +01:00
"dependencies": {
"@fullhuman/postcss-purgecss": "4.0.3",
"@testing-library/jest-dom": "5.12.0",
"@testing-library/react": "11.2.7",
"@testing-library/user-event": "13.1.9",
"@types/jest": "26.0.23",
"@types/node": "15.6.0",
"@types/react": "17.0.6",
"@types/react-dom": "17.0.5",
"@types/react-router-dom": "5.1.7",
"@types/recharts": "1.8.19",
"autoprefixer": "10.2.5",
"axios": "0.21.1",
"date-fns": "2.21.3",
2020-05-11 00:24:29 +00:00
"npm-run-all": "4.1.5",
"postcss": "8.3.0",
"postcss-cli": "8.3.1",
"postcss-import": "14.0.2",
"prettier": "2.3.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.3",
"recharts": "2.0.9",
"tailwindcss": "2.1.2",
"typescript": "4.2.4"
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",
2020-05-02 18:41:57 +02:00
"format": "prettier --write \"./*.js\" \"src/**/*.(tsx|ts|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"
]
}
}