personal-site/package.json

49 lines
1.3 KiB
JSON
Raw Normal View History

2022-01-06 05:27:13 +00:00
{
2022-03-11 10:43:00 +00:00
"name": "personal_site",
"version": "1.0.0",
"description": "My personal site",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "next dev -p 5000",
"build": "next build",
2022-03-11 10:46:00 +00:00
"start": "next start -p 5000",
2022-03-11 10:43:00 +00:00
"lint": "next lint",
"tailwind": "npx tailwindcss -i ./tailwind/tw_main.css -o ./styles/tw_main.css --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BenjaminToby/personal_site.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BenjaminToby/personal_site/issues"
},
"homepage": "https://github.com/BenjaminToby/personal_site#readme",
"dependencies": {
2022-06-03 16:36:24 +00:00
"@barba/core": "^2.9.7",
2023-08-21 08:32:27 +00:00
"cors": "^2.8.5",
2023-11-21 06:18:48 +00:00
"datasquirel": "^1.9.5",
2022-06-03 16:36:24 +00:00
"gsap": "^3.10.4",
2023-07-19 14:49:15 +00:00
"next": "^13.4.10",
2022-03-11 10:43:00 +00:00
"nodemailer": "^6.7.2",
2023-07-19 14:49:15 +00:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sanitize-html": "^2.11.0",
2022-03-11 10:43:00 +00:00
"three": "^0.138.3"
},
"devDependencies": {
2023-08-21 08:32:27 +00:00
"@types/cors": "^2.8.13",
2023-07-19 14:49:15 +00:00
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
2023-07-20 20:21:46 +00:00
"autoprefixer": "^10.4.14",
"postcss": "^8.4.26",
"tailwindcss": "^3.3.3",
2023-07-19 14:49:15 +00:00
"typescript": "^5.1.6"
2022-03-11 10:43:00 +00:00
}
2022-01-06 05:27:13 +00:00
}