forked from WinnerOne-LETS/LETS_FE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.89 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "next-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"server": "node server.js",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore ./src",
"format:fix": "prettier --write --ignore-path .gitignore ./src",
"prepare": "husky install",
"test": "jest",
"test:watch": "jest --watchAll",
"watch": "npx tsx watch ./src/mocks/http.ts"
},
"dependencies": {
"@tanstack/react-query": "^5.14.2",
"@tanstack/react-query-devtools": "^5.14.5",
"@types/daum-postcode": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"isomorphic-fetch": "^3.0.0",
"next": "14.0.3",
"react": "^18",
"react-dom": "^18",
"swiper": "^11.0.5",
"zustand": "^4.4.7"
},
"devDependencies": {
"@mswjs/http-middleware": "^0.9.2",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.16",
"cors": "^2.8.5",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-testing-library": "^6.2.0",
"express": "^4.18.2",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"msw": "^2.0.11",
"postcss": "^8.4.32",
"prettier": "3.1.0",
"tailwindcss": "^3.3.6",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"msw": {
"workerDirectory": "public"
}
}