-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "e-com",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 80",
"lint": "next lint",
"mock": "npx tsx watch ./src/mocks/http.ts"
},
"dependencies": {
"@auth/core": "^0.18.0",
"@faker-js/faker": "^8.4.1",
"@tanstack/react-query": "^5.20.5",
"@vanilla-extract/css": "^1.14.1",
"classnames": "^2.5.1",
"cookie": "^0.6.0",
"dayjs": "^1.11.10",
"next": "14.1.0",
"next-auth": "^5.0.0-beta.3",
"react": "^18",
"react-dom": "^18",
"react-intersection-observer": "^9.8.0",
"react-textarea-autosize": "^8.5.3",
"socket.io-client": "^4.7.4",
"zustand": "^4.5.1"
},
"devDependencies": {
"@mswjs/http-middleware": "^0.9.2",
"@tanstack/react-query-devtools": "^5.21.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vanilla-extract/next-plugin": "^2.3.6",
"cors": "^2.8.5",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"express": "^4.18.2",
"msw": "2.1",
"prettier": "^3.2.4",
"typescript": "^5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}