Initial commit from Create Next App

This commit is contained in:
Gavin McDonald
2025-04-09 09:13:53 -04:00
commit a7708b4fad
12 changed files with 1686 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"private": true,
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/server.js"
},
"dependencies": {
"cross-env": "^7.0.3",
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^18.11.5",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}