-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
{
"name": "dotori_v2",
"version": "0.1.0",
"private": true,
"sideEffects": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:production": "env-cmd -f .env.production next build",
"build:dev": "env-cmd -f .env.development next build",
"start": "next start",
"lint": "next lint",
"analyze": "ANALYZE=true next build",
"prettier": "prettier --write **/*.{ts,tsx}"
},
"dependencies": {
"@emotion/css": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@next/font": "13.1.2",
"@splinetool/react-spline": "^2.2.6",
"@splinetool/runtime": "^0.9.492",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"axios": "^1.2.3",
"caniuse-lite": "^1.0.30001559",
"env-cmd": "^10.1.0",
"jwt-decode": "^3.1.2",
"lottie-react": "^2.4.0",
"msw": "^1.2.1",
"next": "12.3.1",
"nookies": "^2.5.2",
"react": "^18.2.0",
"react-calendar": "^4.1.0",
"react-dom": "18.2.0",
"react-easy-crop": "^4.7.0",
"react-hook-form": "^7.42.1",
"react-toastify": "^9.1.1",
"recoil": "^0.7.6",
"sharp": "^0.31.3",
"swr": "^2.1.0",
"typescript": "4.9.4"
},
"msw": {
"workerDirectory": "public"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.2.3",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "8.32.0",
"eslint-config-next": "^14.2.6",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3"
}
}