github.com-MaxLeiter-drift/src/package.json

85 lines
2.2 KiB
JSON
Raw Normal View History

2022-03-06 19:46:59 -05:00
{
2022-04-09 20:48:19 -04:00
"name": "drift",
"version": "0.1.0",
"private": true,
"scripts": {
2022-11-09 21:38:05 -05:00
"dev": "next dev --port 3000",
2022-04-09 20:48:19 -04:00
"build": "next build",
2022-11-09 21:38:05 -05:00
"start": "next start --port 3000",
2022-12-18 21:18:32 -05:00
"lint": "next lint && prettier --list-different --config .prettierrc '{components,lib,app,pages}/**/*.{ts,tsx}' --write",
2022-04-09 20:48:19 -04:00
"analyze": "cross-env ANALYZE=true next build",
2022-11-09 21:38:05 -05:00
"find:unused": "next-unused",
"prisma": "prisma",
"jest": "jest"
2022-04-09 20:48:19 -04:00
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.5",
2022-12-16 14:49:10 -05:00
"@next/eslint-plugin-next": "13.0.7-canary.4",
"@next/font": "13.0.8-canary.0",
"@prisma/client": "^4.7.1",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-dropdown-menu": "^2.0.1",
2022-11-12 21:39:03 -05:00
"@radix-ui/react-popover": "^1.0.2",
2022-11-16 03:49:12 -05:00
"@radix-ui/react-tabs": "^1.0.1",
2022-11-12 21:39:03 -05:00
"@radix-ui/react-tooltip": "^1.0.2",
"@wcj/markdown-to-html": "^2.1.2",
2022-12-04 05:04:47 -05:00
"@wits/next-themes": "0.2.14",
2022-12-16 14:49:10 -05:00
"client-only": "^0.0.1",
"client-zip": "2.2.1",
"jest": "^29.3.1",
"lodash.debounce": "^4.0.8",
"next": "13.0.8-canary.0",
"next-auth": "^4.18.6",
2022-12-04 05:04:47 -05:00
"prisma": "^4.7.1",
"react": "18.2.0",
"react-datepicker": "4.8.0",
"react-dom": "18.2.0",
"react-dropzone": "14.2.3",
"react-feather": "^2.0.10",
2022-12-16 15:38:45 -05:00
"react-hot-toast": "2.4.0-beta.0",
2022-12-16 14:49:10 -05:00
"server-only": "^0.0.1",
2022-12-04 04:31:51 -05:00
"textarea-markdown-editor": "1.0.4",
2022-12-18 04:14:46 -05:00
"ts-jest": "^29.0.3",
"uuid": "^9.0.0"
2022-04-09 20:48:19 -04:00
},
"devDependencies": {
2022-12-16 14:49:10 -05:00
"@next/bundle-analyzer": "13.0.7-canary.4",
2022-11-09 21:38:05 -05:00
"@types/bcrypt": "^5.0.0",
"@types/lodash.debounce": "^4.0.7",
2022-04-12 22:09:41 -04:00
"@types/node": "17.0.23",
"@types/react": "18.0.9",
"@types/react-datepicker": "4.4.1",
"@types/react-dom": "18.0.3",
2022-12-18 04:14:46 -05:00
"@types/uuid": "^9.0.0",
2022-12-18 21:18:32 -05:00
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"clsx": "^1.2.1",
"cross-env": "7.0.3",
2022-12-04 04:31:51 -05:00
"csstype": "^3.1.1",
"eslint": "8.27.0",
"eslint-config-next": "13.0.3",
"next-unused": "0.0.6",
"prettier": "2.6.2",
"typescript": "4.6.4",
"typescript-plugin-css-modules": "3.4.0"
2022-04-09 20:48:19 -04:00
},
"optionalDependencies": {
"sharp": "^0.31.2"
},
2022-04-09 20:48:19 -04:00
"next-unused": {
"alias": {
"@components": "components/",
"@lib": "lib/",
"@styles": "styles/"
},
"include": [
"components",
"lib"
]
},
"overrides": {
"react": "18.2.0",
"react-dom": "18.2.0"
2022-04-09 20:48:19 -04:00
}
2022-03-06 19:46:59 -05:00
}