personal-site/package.json

40 lines
1.0 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",
"gsap": "^3.10.4",
2022-03-11 10:43:00 +00:00
"next": "^12.0.4",
"nodemailer": "^6.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"three": "^0.138.3"
},
"devDependencies": {
"tailwindcss": "^3.0.23"
}
2022-01-06 05:27:13 +00:00
}