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": {
|
2021-05-22 17:30:52 +02:00
|
|
|
"@fullhuman/postcss-purgecss": "4.0.3",
|
2021-07-28 02:24:57 +00:00
|
|
|
"@testing-library/jest-dom": "5.14.1",
|
2021-07-28 13:55:44 +00:00
|
|
|
"@testing-library/react": "12.0.0",
|
2021-07-28 03:16:38 +00:00
|
|
|
"@testing-library/user-event": "13.2.1",
|
2021-08-19 22:51:38 +00:00
|
|
|
"@types/jest": "27.0.1",
|
2021-05-24 19:13:30 +02:00
|
|
|
"@types/node": "15.6.0",
|
2021-08-19 07:30:30 +00:00
|
|
|
"@types/react": "17.0.19",
|
2021-07-27 20:38:52 +00:00
|
|
|
"@types/react-dom": "17.0.9",
|
2021-07-27 20:51:09 +00:00
|
|
|
"@types/react-router-dom": "5.1.8",
|
2021-05-24 19:13:30 +02:00
|
|
|
"@types/recharts": "1.8.19",
|
2021-08-26 15:58:51 +00:00
|
|
|
"autoprefixer": "10.3.3",
|
2021-05-22 15:07:56 +02:00
|
|
|
"axios": "0.21.1",
|
2021-07-28 07:00:53 +00:00
|
|
|
"date-fns": "2.23.0",
|
2020-05-11 00:24:29 +00:00
|
|
|
"npm-run-all": "4.1.5",
|
2021-07-27 21:56:27 +00:00
|
|
|
"postcss": "8.3.6",
|
2021-05-22 17:30:52 +02:00
|
|
|
"postcss-cli": "8.3.1",
|
|
|
|
|
"postcss-import": "14.0.2",
|
2021-07-27 22:09:23 +00:00
|
|
|
"prettier": "2.3.2",
|
2021-05-24 19:13:30 +02:00
|
|
|
"react": "17.0.2",
|
|
|
|
|
"react-dom": "17.0.2",
|
2021-08-27 23:10:25 +00:00
|
|
|
"react-router-dom": "5.2.1",
|
2021-05-24 19:13:30 +02:00
|
|
|
"react-scripts": "4.0.3",
|
2021-08-24 07:57:16 +00:00
|
|
|
"recharts": "2.1.2",
|
2021-08-30 12:02:21 +00:00
|
|
|
"tailwindcss": "2.2.9",
|
2021-08-26 22:20:29 +00:00
|
|
|
"typescript": "4.4.2"
|
2020-01-26 19:07:15 +01:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2020-05-02 03:03:19 +02:00
|
|
|
"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)\"",
|
2020-05-02 03:03:19 +02:00
|
|
|
"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"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|