2022-03-06 19:46:59 -05:00
|
|
|
{
|
|
|
|
"name": "drift",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2022-03-07 19:42:47 -05:00
|
|
|
"dev": "next dev --port 3001",
|
2022-03-06 19:46:59 -05:00
|
|
|
"build": "next build",
|
|
|
|
"start": "next start",
|
2022-03-23 18:34:23 -04:00
|
|
|
"lint": "next lint && prettier --config .prettierrc '{components,lib,pages}/**/*.ts' --write",
|
|
|
|
"analyze": "ANALYZE=true next build",
|
|
|
|
"find:unused": "next-unused"
|
2022-03-06 19:46:59 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@geist-ui/core": "^2.3.5",
|
|
|
|
"@geist-ui/icons": "^1.0.1",
|
2022-03-15 22:49:41 -04:00
|
|
|
"@types/cookie": "^0.4.1",
|
2022-03-15 15:15:54 -04:00
|
|
|
"@types/js-cookie": "^3.0.1",
|
2022-03-11 21:48:40 -05:00
|
|
|
"client-zip": "^2.0.0",
|
2022-03-15 22:49:41 -04:00
|
|
|
"cookie": "^0.4.2",
|
2022-03-08 02:09:30 -05:00
|
|
|
"dotenv": "^16.0.0",
|
2022-03-15 15:15:54 -04:00
|
|
|
"js-cookie": "^3.0.1",
|
2022-03-22 23:06:15 -04:00
|
|
|
"marked": "^4.0.12",
|
2022-03-21 15:45:35 -04:00
|
|
|
"next": "^12.1.1-canary.15",
|
2022-03-23 18:34:23 -04:00
|
|
|
"postcss": "^8.4.12",
|
|
|
|
"postcss-flexbugs-fixes": "^5.0.2",
|
|
|
|
"postcss-hover-media-feature": "^1.0.2",
|
|
|
|
"postcss-preset-env": "^7.4.3",
|
|
|
|
"preact": "^10.6.6",
|
2022-03-22 23:06:15 -04:00
|
|
|
"prism-react-renderer": "^1.3.1",
|
2022-03-06 19:46:59 -05:00
|
|
|
"react": "17.0.2",
|
|
|
|
"react-dom": "17.0.2",
|
2022-03-11 18:38:37 -05:00
|
|
|
"react-dropzone": "^12.0.4",
|
2022-03-09 20:11:37 -05:00
|
|
|
"react-loading-skeleton": "^3.0.3",
|
2022-03-06 19:46:59 -05:00
|
|
|
"react-markdown": "^8.0.0",
|
2022-03-09 17:57:44 -05:00
|
|
|
"react-syntax-highlighter": "^15.4.5",
|
2022-03-20 17:09:56 -04:00
|
|
|
"rehype-autolink-headings": "^6.1.1",
|
2022-03-22 01:50:25 -04:00
|
|
|
"rehype-raw": "^6.1.1",
|
2022-03-20 17:09:56 -04:00
|
|
|
"rehype-slug": "^5.0.1",
|
2022-03-06 19:46:59 -05:00
|
|
|
"remark-gfm": "^3.0.1",
|
|
|
|
"swr": "^1.2.2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-03-21 18:55:21 -04:00
|
|
|
"@next/bundle-analyzer": "^12.1.0",
|
2022-03-23 00:37:27 -04:00
|
|
|
"@types/lodash.debounce": "^4.0.6",
|
2022-03-22 23:06:15 -04:00
|
|
|
"@types/marked": "^4.0.3",
|
2022-03-06 19:46:59 -05:00
|
|
|
"@types/node": "17.0.21",
|
2022-03-23 00:37:27 -04:00
|
|
|
"@types/nprogress": "^0.2.0",
|
2022-03-06 19:46:59 -05:00
|
|
|
"@types/react": "17.0.39",
|
2022-03-21 17:20:20 -04:00
|
|
|
"@types/react-dom": "^17.0.14",
|
2022-03-09 17:57:44 -05:00
|
|
|
"@types/react-syntax-highlighter": "^13.5.2",
|
2022-03-06 19:46:59 -05:00
|
|
|
"eslint": "8.10.0",
|
2022-03-21 23:30:45 -04:00
|
|
|
"eslint-config-next": "^12.1.1-canary.16",
|
2022-03-23 18:34:23 -04:00
|
|
|
"next-unused": "^0.0.6",
|
|
|
|
"prettier": "^2.6.0",
|
2022-03-21 17:20:20 -04:00
|
|
|
"typescript": "4.6.2",
|
|
|
|
"typescript-plugin-css-modules": "^3.4.0"
|
2022-03-23 18:34:23 -04:00
|
|
|
},
|
|
|
|
"next-unused": {
|
|
|
|
"alias": {
|
|
|
|
"@components": "components/",
|
|
|
|
"@lib": "lib/",
|
|
|
|
"@styles": "styles/"
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"components",
|
|
|
|
"lib"
|
|
|
|
]
|
2022-03-06 19:46:59 -05:00
|
|
|
}
|
|
|
|
}
|