stash/ui/v2.5/package.json

123 lines
4.2 KiB
JSON
Raw Normal View History

2020-01-03 21:29:21 +00:00
{
"name": "stash",
"version": "0.1.0",
"private": true,
"homepage": "./",
2020-01-24 13:25:11 +00:00
"sideEffects": false,
2020-01-24 11:59:37 +00:00
"scripts": {
"start": "vite",
"build": "vite build",
"build-ci": "yarn validate && yarn build",
"validate": "yarn lint && yarn format-check && tsc --noEmit",
2020-01-24 11:59:37 +00:00
"lint": "yarn lint:css && yarn lint:js",
"lint:js": "eslint --cache src/**/*.{ts,tsx}",
"lint:css": "stylelint \"src/**/*.scss\"",
"format": "prettier --write \"src/**/!(generated-graphql).{js,jsx,ts,tsx,scss}\"",
"format-check": "prettier --check \"src/**/!(generated-graphql).{js,jsx,ts,tsx,scss}\"",
2020-02-06 21:42:29 +00:00
"gqlgen": "gql-gen --config codegen.yml",
"extract": "NODE_ENV=development extract-messages -l=en,de -o src/locale -d en --flat false 'src/**/!(*.test).tsx'"
2020-01-24 11:59:37 +00:00
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
2020-01-03 21:29:21 +00:00
"dependencies": {
2021-01-27 00:25:29 +00:00
"@apollo/client": "^3.3.7",
2021-01-29 22:16:28 +00:00
"@formatjs/intl-getcanonicallocales": "^1.5.3",
"@formatjs/intl-locale": "^2.4.14",
2021-01-27 00:25:29 +00:00
"@formatjs/intl-numberformat": "^6.1.3",
2021-01-29 22:16:28 +00:00
"@formatjs/intl-pluralrules": "^4.0.6",
2021-01-27 00:25:29 +00:00
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-regular-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@types/react-select": "^4.0.8",
"ansi-regex": "^5.0.1",
2021-01-27 00:25:29 +00:00
"apollo-upload-client": "^14.1.3",
"axios": "0.24.0",
2020-10-24 03:31:39 +00:00
"base64-blob": "^1.4.1",
2021-01-27 00:25:29 +00:00
"bootstrap": "^4.6.0",
2020-01-11 22:14:20 +00:00
"classnames": "^2.2.6",
"flag-icon-css": "^3.5.0",
"flexbin": "^0.2.0",
2021-01-27 00:25:29 +00:00
"formik": "^2.2.6",
"graphql": "^15.4.0",
"graphql-tag": "^2.11.0",
2021-01-27 00:25:29 +00:00
"i18n-iso-countries": "^6.4.0",
"intersection-observer": "^0.12.0",
"localforage": "1.9.0",
"lodash": "^4.17.20",
"mousetrap": "^1.6.5",
2020-12-01 21:26:49 +00:00
"mousetrap-pause": "^1.0.0",
"normalize-url": "^4.5.1",
"postcss": "^8.2.10",
2021-01-27 00:25:29 +00:00
"query-string": "6.13.8",
"react": "17.0.2",
2021-01-27 00:25:29 +00:00
"react-bootstrap": "1.4.3",
"react-dom": "17.0.2",
"react-helmet": "^6.1.0",
2021-01-27 00:25:29 +00:00
"react-intl": "^5.10.16",
"react-markdown": "^7.1.0",
2020-01-03 21:29:21 +00:00
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.2.0",
2021-01-27 00:25:29 +00:00
"react-router-hash-link": "^2.3.1",
"react-select": "^4.0.2",
2020-12-01 21:26:49 +00:00
"remark-gfm": "^1.0.0",
2021-01-27 00:25:29 +00:00
"sass": "^1.32.5",
"string.prototype.replaceall": "^1.0.4",
"subscriptions-transport-ws": "^0.9.18",
"thehandy": "^1.0.3",
"universal-cookie": "^4.0.4",
"video.js": "^7.17.0",
"videojs-landscape-fullscreen": "^11.33.0",
"videojs-seek-buttons": "^2.2.0",
"videojs-vtt-thumbnails-freetube": "^0.0.15",
"vite": "^2.7.1",
"vite-plugin-compression": "^0.3.5",
"vite-tsconfig-paths": "^3.3.17",
"ws": "^7.4.6",
"yup": "^0.32.9"
2020-01-03 21:29:21 +00:00
},
"devDependencies": {
2021-01-27 00:25:29 +00:00
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "^1.20.0",
"@graphql-codegen/time": "^2.0.2",
"@graphql-codegen/typescript": "^1.20.00",
"@graphql-codegen/typescript-operations": "^1.17.13",
"@graphql-codegen/typescript-react-apollo": "^2.2.1",
"@types/apollo-upload-client": "^14.1.0",
"@types/classnames": "^2.2.11",
"@types/fslightbox-react": "^1.4.0",
2021-01-27 00:25:29 +00:00
"@types/lodash": "^4.14.168",
"@types/mousetrap": "^1.6.5",
"@types/node": "14.14.22",
"@types/react": "17.0.31",
"@types/react-dom": "^17.0.10",
"@types/react-helmet": "^6.1.3",
2020-01-03 21:29:21 +00:00
"@types/react-router-bootstrap": "^0.24.5",
2021-01-27 00:25:29 +00:00
"@types/react-router-dom": "5.1.7",
2020-10-24 03:31:39 +00:00
"@types/react-router-hash-link": "^1.2.1",
"@types/video.js": "^7.3.28",
"@types/videojs-seek-buttons": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"extract-react-intl-messages": "^4.1.1",
2021-01-27 00:25:29 +00:00
"postcss-safe-parser": "^5.0.2",
"prettier": "2.2.1",
"stylelint": "^13.9.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-order": "^4.1.0",
"typescript": "~4.4.4"
2020-01-03 21:29:21 +00:00
}
}