-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.5 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.5 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "numble",
"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",
"migrate:dev": "npx dotenv -e .env.local -- prisma migrate dev",
"db:push": "npx dotenv -e .env.local -- prisma db push",
"migrate:reset": "npx dotenv -e .env.local -- prisma migrate reset",
"db:seed": "npx dotenv -e .env.local -- prisma db seed",
"prisma:generate": "npx dotenv -e .env.local -- prisma generate",
"prisma:studio": "npx dotenv -e .env.local -- prisma studio",
"production:build": "npx prisma generate && npx prisma migrate deploy && next build"
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.17",
"@monaco-editor/react": "^4.5.0",
"@next-auth/prisma-adapter": "1.0.1",
"@next/bundle-analyzer": "^13.3.2",
"@prisma/client": "^4.13.0",
"@tailwindcss/forms": "^0.5.3",
"@tanstack/react-query": "^4.29.3",
"@tanstack/react-query-devtools": "^4.29.6",
"@types/node": "18.15.11",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"@types/react-slick": "^0.23.10",
"@vercel/analytics": "^1.0.1",
"autoprefixer": "^10.4.14",
"aws-sdk": "^2.1373.0",
"axios": "^1.3.5",
"axios-mock-adapter": "^1.21.5",
"cookies-next": "^2.1.1",
"dotenv": "^16.0.3",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"highlight.js": "^11.7.0",
"javascript-time-ago": "^2.5.9",
"jest-canvas-mock": "^2.5.1",
"jsonwebtoken": "^9.0.0",
"lottie-web": "^5.11.0",
"msw": "^1.2.2",
"next": "13.3.0",
"next-auth": "^4.22.1",
"next-seo": "^6.0.0",
"postcss": "^8.4.22",
"postcss-loader": "^7.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-slick": "^0.29.0",
"recoil": "^0.7.7",
"slick-carousel": "^1.8.1",
"tailwind-merge": "^1.12.0",
"tailwindcss": "^3.3.1",
"typescript": "5.0.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jsonwebtoken": "^9.0.1",
"@types/next-auth": "^3.15.0",
"@types/testing-library__jest-dom": "^5.14.6",
"@types/uuid": "^9.0.1",
"dotenv-cli": "^7.2.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prisma": "^4.13.0",
"sass": "^1.62.1",
"uuid": "^9.0.0"
},
"proxy": "https://openapi.naver.com"
}