There was an error fetching the commit references. Please try again later.
Merge branch 'main' of https://github.com/noelsimbolon/tonality-rest
Showing
- .env.docker 16 additions, 0 deletions.env.docker
- .env.example 16 additions, 0 deletions.env.example
- .eslintrc.js 33 additions, 0 deletions.eslintrc.js
- .gitignore 3 additions, 0 deletions.gitignore
- package-lock.json 6489 additions, 0 deletionspackage-lock.json
- package.json 36 additions, 0 deletionspackage.json
- prisma/schema.prisma 12 additions, 0 deletionsprisma/schema.prisma
- setup.sh 3 additions, 0 deletionssetup.sh
- src/app.ts 18 additions, 0 deletionssrc/app.ts
- tsconfig.json 13 additions, 0 deletionstsconfig.json
.env.docker
0 → 100644
.env.example
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "tonality-rest", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "dist/app.js", | ||
"scripts": { | ||
"start": "tsc && node dist/app.js", | ||
"lint": "eslint . --ext .ts", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"@types/express": "^4.17.1", | ||
"@types/jest": "^29.5.6", | ||
"@types/supertest": "^2.0.15", | ||
"@typescript-eslint/eslint-plugin": "^6.8.0", | ||
"@typescript-eslint/parser": "^6.8.0", | ||
"eslint": "^8.52.0", | ||
"jest": "^29.7.0", | ||
"prisma": "^5.4.2", | ||
"supertest": "^6.3.3", | ||
"typescript": "^5.2.2", | ||
"zod": "^3.22.4" | ||
}, | ||
"dependencies": { | ||
"@prisma/client": "^5.4.2", | ||
"@types/bcrypt": "^5.0.1", | ||
"@types/jsonwebtoken": "^9.0.4", | ||
"bcrypt": "^5.1.1", | ||
"dotenv": "^16.3.1", | ||
"express": "^4.17.1", | ||
"ts-node": "^10.9.1" | ||
} | ||
} |
prisma/schema.prisma
0 → 100644
setup.sh
0 → 100644
src/app.ts
0 → 100644
tsconfig.json
0 → 100644
Please register or sign in to comment