personal-site/package.json

58 lines
1.5 KiB
JSON
Raw Permalink 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",
2024-10-01 14:55:38 +00:00
"start": "next start",
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",
2024-10-01 15:22:49 +00:00
"next": "^14.2.13",
2022-03-11 10:43:00 +00:00
"nodemailer": "^6.7.2",
2024-10-01 15:22:49 +00:00
"react": "^18.3.1",
"react-dom": "^18.3.1",
2023-07-19 14:49:15 +00:00
"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"
2024-01-08 18:03:07 +00:00
},
"pkg": {
"scripts": "build/**/*.js",
"assets": "views/**/*",
"targets": [
"node18-linux-amd64",
"node18-linux-arm64"
],
"outputPath": "dist"
2022-03-11 10:43:00 +00:00
}
2022-01-06 05:27:13 +00:00
}