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": {
|
|
|
|
"dev": "next dev --port 3001",
|
|
|
|
"build": "next build",
|
2022-04-10 23:05:42 -04:00
|
|
|
"start": "next start --port 3001",
|
2022-04-09 20:48:19 -04:00
|
|
|
"lint": "next lint && prettier --list-different --config .prettierrc '{components,lib,pages}/**/*.{ts,tsx}' --write",
|
|
|
|
"analyze": "cross-env ANALYZE=true next build",
|
|
|
|
"find:unused": "next-unused"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-11-08 03:28:19 -05:00
|
|
|
"@geist-ui/core": "^2.3.8",
|
2022-05-07 15:07:50 -04:00
|
|
|
"@geist-ui/icons": "1.0.2",
|
|
|
|
"@types/cookie": "0.5.1",
|
|
|
|
"@types/js-cookie": "3.0.2",
|
2022-11-23 18:57:03 -05:00
|
|
|
"client-zip": "2.3.0",
|
2022-04-12 16:52:42 -04:00
|
|
|
"cookie": "0.5.0",
|
2022-11-23 18:57:03 -05:00
|
|
|
"dotenv": "16.0.3",
|
2022-04-12 16:25:48 -04:00
|
|
|
"js-cookie": "3.0.1",
|
2022-11-23 18:57:03 -05:00
|
|
|
"next": "13.0.5",
|
2022-11-08 03:28:19 -05:00
|
|
|
"next-themes": "0.2.1",
|
2022-11-23 18:57:03 -05:00
|
|
|
"rc-table": "7.28.1",
|
2022-11-08 03:28:19 -05:00
|
|
|
"react": "18.2.0",
|
|
|
|
"react-datepicker": "4.8.0",
|
|
|
|
"react-dom": "18.2.0",
|
|
|
|
"react-dropzone": "14.2.3",
|
2022-04-12 16:52:42 -04:00
|
|
|
"react-loading-skeleton": "3.1.0",
|
|
|
|
"swr": "1.3.0",
|
2022-04-12 16:25:48 -04:00
|
|
|
"textarea-markdown-editor": "0.1.13"
|
2022-04-09 20:48:19 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-11-23 18:57:03 -05:00
|
|
|
"@next/bundle-analyzer": "12.3.4",
|
2022-04-12 22:09:41 -04:00
|
|
|
"@types/node": "17.0.23",
|
2022-11-23 18:57:03 -05:00
|
|
|
"@types/react": "18.0.25",
|
|
|
|
"@types/react-datepicker": "4.8.0",
|
|
|
|
"@types/react-dom": "18.0.9",
|
2022-04-12 16:25:48 -04:00
|
|
|
"cross-env": "7.0.3",
|
2022-11-23 18:57:03 -05:00
|
|
|
"eslint": "8.28.0",
|
|
|
|
"eslint-config-next": "13.0.5",
|
2022-04-12 16:25:48 -04:00
|
|
|
"next-unused": "0.0.6",
|
2022-11-23 18:57:03 -05:00
|
|
|
"prettier": "2.8.0",
|
|
|
|
"typescript": "4.9.3",
|
2022-04-12 16:25:48 -04:00
|
|
|
"typescript-plugin-css-modules": "3.4.0"
|
2022-04-09 20:48:19 -04:00
|
|
|
},
|
2022-11-08 03:28:19 -05: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"
|
|
|
|
]
|
2022-11-08 03:28:19 -05:00
|
|
|
},
|
|
|
|
"overrides": {
|
2022-11-23 18:57:03 -05:00
|
|
|
"next": "13.0.5"
|
2022-04-09 20:48:19 -04:00
|
|
|
}
|
2022-03-06 19:46:59 -05:00
|
|
|
}
|