InvestWeb/package.json

56 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2022-11-23 17:20:36 -05:00
{
"name": "investweb",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3010",
2022-11-23 17:20:36 -05:00
"build": "next build",
2023-02-07 04:48:13 -05:00
"prebuild": "ts-node ./scripts/runner.ts",
"start": "next start -p 3010",
2022-11-23 17:20:36 -05:00
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
2023-03-30 00:27:45 -04:00
"@next-auth/mongodb-adapter": "^1.1.1",
2023-02-07 04:48:13 -05:00
"@types/fs-extra": "^11.0.1",
2023-01-28 23:14:42 -05:00
"chart.js": "^4.2.0",
2022-11-23 17:20:36 -05:00
"eslint": "8.28.0",
"eslint-config-next": "13.0.4",
2023-02-06 06:03:33 -05:00
"fast-glob": "^3.2.12",
2022-12-08 09:57:59 -05:00
"framer-motion": "^7.6.19",
2023-02-07 04:48:13 -05:00
"fs-extra": "^11.1.0",
"gray-matter": "^4.0.3",
2023-01-19 22:17:49 -05:00
"ioredis": "^5.2.5",
2023-03-30 00:47:29 -04:00
"mongodb": "^4.1.1",
2022-11-23 17:20:36 -05:00
"next": "13.0.4",
2023-03-30 00:27:45 -04:00
"next-auth": "^4.20.1",
2022-11-23 17:20:36 -05:00
"react": "18.2.0",
2023-01-28 23:14:42 -05:00
"react-chartjs-2": "^5.2.0",
2022-11-23 17:20:36 -05:00
"react-dom": "18.2.0",
2023-02-06 06:03:33 -05:00
"react-markdown": "^8.0.5",
"rehype-highlight": "^6.0.0",
"rehype-raw": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
2022-12-10 05:49:13 -05:00
"sharp": "^0.31.2",
2022-11-23 17:20:36 -05:00
"typescript": "4.9.3"
},
"devDependencies": {
2022-12-08 09:57:59 -05:00
"@types/ioredis": "^4.28.8",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
2022-11-23 17:20:36 -05:00
"autoprefixer": "^10.4.13",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"postcss": "^8.4.19",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
2023-02-07 04:48:13 -05:00
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1"
2022-11-23 17:20:36 -05:00
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}