Skip to content

Commit

Permalink
todo: Sign-up 페이지와 SignUpForm 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
sunub committed Dec 21, 2023
1 parent e6c691c commit 7e1eb74
Show file tree
Hide file tree
Showing 21 changed files with 148 additions and 470 deletions.
2 changes: 1 addition & 1 deletion jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ const config: Config = {
// setupFiles: [],

// A list of paths to modules that run some code to configure or set up the testing framework before each test
setupFilesAfterEnv: ["./jest.setup.ts"],
setupFilesAfterEnv: ["./jest.setup.ts", "./tsconfig.json"],

// The number of seconds after which a test is considered as slow and reported as such in the results.
// slowTestThreshold: 5,
Expand Down
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ const nextConfig = {
},
};

export default nextConfig;
module.exports = nextConfig;
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
{
"name": "for-digital-divide",
"version": "0.1.0",
"types": "module",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbo",
"dev:tsnode": "pnpm exec nodemon --watch ./src/lib/action.ts --exec 'ts-node' ./src/lib/action.ts",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "node -r dotenv/config ./scripts/seed.mjs",
"test:unit": "jest",
"test:unit": "jest --config ./jest.config.ts",
"test:e2e": "pnpm exec playwright --config ./playwright.config.ts"
},
"dependencies": {
Expand All @@ -36,7 +35,8 @@
"react-remove-scroll": "^2.5.7",
"styled-components": "^6.0.7",
"three": "^0.159.0",
"typescript": "5.2.2"
"typescript": "5.2.2",
"valibot": "^0.24.1"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
Expand All @@ -46,11 +46,13 @@
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.11",
"@types/styled-components": "^5.1.26",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2"
}
Expand Down
131 changes: 117 additions & 14 deletions pnpm-lock.yaml

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

Empty file added src/app/auth.ts
Empty file.
Loading

0 comments on commit 7e1eb74

Please sign in to comment.