Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ DATABASE_PASSWORD=your_database_user_password
DATABASE_HOST=your_database_host
DATABASE_PORT=your_database_port
DATABASE_URL=your_database_url

# Next Auth
NEXTAUTH_SECRET=your_nextauth_secret
NEXTAUTH_URL=your_nextauth_url
1 change: 0 additions & 1 deletion .idea/locklite.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ const config: Config = {
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/$1',
'^@prisma/(.*)$': '<rootDir>/prisma/$1',
'^@api/(.*)$': '<rootDir>/src/modules/api/$1',
'^@ui/(.*)$': '<rootDir>/src/modules/ui/$1',
'^@shared/(.*)$': '<rootDir>/src/modules/shared/$1',
'^@prisma/(.*)$': '<rootDir>/prisma/$1',
'^@lib/(.*)$': '<rootDir>/lib/$1',
'^@lib/(.*)$': '<rootDir>/src/lib/$1',
},
testMatch: ['**/?(*.)+(spec|test).[tj]s?(x)'],
coverageThreshold: {
Expand All @@ -31,7 +31,7 @@ const config: Config = {
statements: 80,
},
},
coveragePathIgnorePatterns: ['<rootDir>/lib/', '<rootDir>/prisma/'],
coveragePathIgnorePatterns: ['<rootDir>/src/lib/', '<rootDir>/prisma/'],
};

export default config;
211 changes: 211 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,14 @@
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.2.0",
"@mui/material": "^7.2.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.12.0",
"bcrypt": "^6.0.0",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-react": "^7.37.5",
"http-status-codes": "^2.3.0",
"next": "15.3.5",
"next-auth": "^4.24.11",
"next-swagger-doc": "^0.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
Expand All @@ -40,6 +43,7 @@
"@eslint/js": "^9.31.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/bcrypt": "^6.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
Expand Down
Loading