2020-01-26 19:07:15 +01:00
|
|
|
{
|
|
|
|
|
"name": "frontend",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"dependencies": {
|
2020-05-02 03:03:19 +02:00
|
|
|
"@fullhuman/postcss-purgecss": "^2.1.2",
|
2020-01-26 19:07:15 +01:00
|
|
|
"@testing-library/jest-dom": "^4.2.4",
|
2020-05-02 03:03:19 +02:00
|
|
|
"@testing-library/react": "^9.5.0",
|
2020-01-26 19:07:15 +01:00
|
|
|
"@testing-library/user-event": "^7.2.1",
|
2020-05-02 03:03:19 +02:00
|
|
|
"@types/jest": "^24.9.1",
|
|
|
|
|
"@types/node": "^12.12.37",
|
|
|
|
|
"@types/react": "^16.9.34",
|
|
|
|
|
"@types/react-dom": "^16.9.7",
|
2020-05-02 18:41:57 +02:00
|
|
|
"@types/react-router-dom": "^5.1.5",
|
2020-05-02 03:03:19 +02:00
|
|
|
"autoprefixer": "^9.7.6",
|
2020-05-02 21:46:41 +02:00
|
|
|
"date-fns": "^2.12.0",
|
2020-05-02 03:03:19 +02:00
|
|
|
"npm-run-all": "^4.1.5",
|
|
|
|
|
"postcss-cli": "^7.1.1",
|
2020-05-02 18:41:57 +02:00
|
|
|
"prettier": "^2.0.5",
|
2020-05-02 03:03:19 +02:00
|
|
|
"react": "^16.13.1",
|
|
|
|
|
"react-dom": "^16.13.1",
|
2020-01-26 19:07:15 +01:00
|
|
|
"react-router-dom": "^5.1.2",
|
2020-05-02 03:03:19 +02:00
|
|
|
"react-scripts": "3.4.1",
|
2020-05-02 18:41:57 +02:00
|
|
|
"tailwindcss": "^1.4.4",
|
2020-05-02 03:03:19 +02:00
|
|
|
"typescript": "^3.7.5"
|
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"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|