initial setup
This commit is contained in:
parent
06589985f4
commit
07cc9df7a2
26
.gitignore
vendored
Executable file
26
.gitignore
vendored
Executable file
|
@ -0,0 +1,26 @@
|
||||||
|
# Custom files
|
||||||
|
.env
|
||||||
|
|
||||||
|
# OS generated files
|
||||||
|
.DS_Store
|
||||||
|
ehthumbs.db
|
||||||
|
Thumbs.db
|
||||||
|
package-lock.json
|
||||||
|
|
||||||
|
# Editor files
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.sublime-project
|
||||||
|
*.sublime-workspace
|
||||||
|
*.komodoproject
|
||||||
|
.sequelizerc
|
||||||
|
|
||||||
|
# Node files
|
||||||
|
node_modules
|
||||||
|
|
||||||
|
# test coverage
|
||||||
|
coverage/
|
||||||
|
|
||||||
|
#folder name
|
||||||
|
public/images
|
||||||
|
public/videos
|
36
package.json
Normal file
36
package.json
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"name": "ai-tennis-coach",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"private": true,
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"start": "node ./server/bin/index",
|
||||||
|
"watch:dev": "nodemon",
|
||||||
|
"dev": "nodemon ./server/bin/index"
|
||||||
|
},
|
||||||
|
"author": "",
|
||||||
|
"license": "ISC",
|
||||||
|
"dependencies": {
|
||||||
|
"@aws-sdk/client-s3": "^3.698.0",
|
||||||
|
"@aws-sdk/s3-request-presigner": "^3.698.0",
|
||||||
|
"aws-sdk": "^2.1692.0",
|
||||||
|
"axios": "^1.7.9",
|
||||||
|
"bcrypt": "^5.1.1",
|
||||||
|
"cookie-parser": "^1.4.7",
|
||||||
|
"cors": "^2.8.5",
|
||||||
|
"dotenv": "^16.4.5",
|
||||||
|
"ejs": "^3.1.10",
|
||||||
|
"express": "^4.21.1",
|
||||||
|
"jsonwebtoken": "^9.0.2",
|
||||||
|
"module-alias": "^2.2.3",
|
||||||
|
"moment": "^2.30.1",
|
||||||
|
"morgan": "^1.10.0",
|
||||||
|
"multer": "^1.4.5-lts.1",
|
||||||
|
"nodemon": "^3.1.7",
|
||||||
|
"pg": "^8.13.1",
|
||||||
|
"qrcode": "^1.5.4",
|
||||||
|
"sequelize": "^6.37.5",
|
||||||
|
"sequelize-cli": "^6.6.2",
|
||||||
|
"socket.io": "^4.8.1"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue