mirror of
https://github.com/evroon/bracket.git
synced 2026-01-24 22:19:05 -05:00
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Erik Vroon <erik.vroon@channable.com>
71 lines
2.2 KiB
JSON
71 lines
2.2 KiB
JSON
{
|
|
"name": "Bracket",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"analyze": "ANALYZE=true next build",
|
|
"start": "next start",
|
|
"typecheck": "tsc --noEmit",
|
|
"export": "next build && next export",
|
|
"lint": "next lint",
|
|
"jest": "jest",
|
|
"jest:watch": "jest --watch",
|
|
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
|
|
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
|
|
"test": "tsc --noEmit && npm run prettier:check && npm run lint && npm run jest -- --passWithNoTests"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.10.6",
|
|
"@emotion/server": "^11.10.0",
|
|
"@mantine/core": "^6.0.5",
|
|
"@mantine/dropzone": "^6.0.5",
|
|
"@mantine/form": "^6.0.5",
|
|
"@mantine/hooks": "^6.0.5",
|
|
"@mantine/next": "^6.0.5",
|
|
"@mantine/notifications": "^6.0.5",
|
|
"@next/bundle-analyzer": "^13.3.1",
|
|
"@react-icons/all-files": "^4.1.0",
|
|
"@tabler/icons-react": "^2.17.0",
|
|
"axios": "^1.4.0",
|
|
"cookies-next": "^2.1.1",
|
|
"date-fns": "^2.29.3",
|
|
"next": "^13.3.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-icons": "^4.8.0",
|
|
"react-redux": "^8.0.5",
|
|
"swr": "^2.1.5"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.21.0",
|
|
"@next/eslint-plugin-next": "^13.2.3",
|
|
"@testing-library/dom": "^9.2.0",
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
"@testing-library/react": "^14.0.0",
|
|
"@testing-library/user-event": "^14.4.3",
|
|
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/node": "^18.16.0",
|
|
"@types/react": "^18.2.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.54.0",
|
|
"@typescript-eslint/parser": "^5.54.0",
|
|
"babel-loader": "^9.1.2",
|
|
"eslint": "^8.39.0",
|
|
"eslint-config-airbnb": "^19.0.4",
|
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
"eslint-config-mantine": "^2.0.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-jest": "^27.2.0",
|
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
"eslint-plugin-react": "^7.32.1",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-testing-library": "^5.10.2",
|
|
"jest": "^27.5.1",
|
|
"prettier": "^2.8.4",
|
|
"ts-jest": "^27.1.4",
|
|
"typescript": "^4.9.4"
|
|
}
|
|
}
|