-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.63 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
{
"name": "my-pack",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci",
"coverage": "jest --coverage"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@next/font": "13.2.3",
"@react-oauth/google": "^0.9.0",
"@types/node": "18.14.6",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/recoil": "^0.0.9",
"@types/swiper": "^6.0.0",
"axios": "^1.3.5",
"eslint": "8.35.0",
"eslint-config-next": "13.2.3",
"framer-motion": "^10.11.2",
"gradient-string": "^2.0.2",
"html2canvas": "^1.4.1",
"next": "13.2.3",
"react": "18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-lottie": "^1.2.3",
"recoil": "^0.7.7",
"styled-components": "^5.3.9",
"swiper": "^9.2.4",
"three": "^0.150.1",
"typescript": "4.9.5",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/gradient-string": "^1.1.2",
"@types/react-lottie": "^1.2.6",
"@types/styled-components": "^5.1.26",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"msw": "^1.2.1"
},
"overrides": {
"react-lottie": {
"react": "^0.14.7 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
}
},
"msw": {
"workerDirectory": "public"
}
}