-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.28 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "boj-helper",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"ts": "tsc --noEmit",
"inspect": "npm run lint && npm run ts",
"format": "prettier --write .",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:seed": "prisma db seed",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"prisma": {
"seed": "tsx prisma/seed/index.ts"
},
"dependencies": {
"@monaco-editor/react": "^4.4.6",
"@next-auth/prisma-adapter": "^1.0.5",
"@next/font": "13.1.6",
"@prisma/client": "^4.10.1",
"@storybook/addon-a11y": "^7.0.18",
"@types/node": "18.11.19",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"axios": "^1.3.3",
"cheerio": "1.0.0-rc.12",
"clsx": "^1.2.1",
"cookies-next": "^2.1.1",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"next": "13.1.6",
"next-auth": "^4.19.2",
"next-connect": "^1.0.0-next.4",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-toastify": "^9.1.1",
"recoil": "^0.7.6",
"recoil-persist": "^4.2.0",
"storybook-dark-mode": "^3.0.0",
"swr": "^2.0.3",
"typescript": "4.9.5",
"yup": "^1.0.2"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.18",
"@storybook/addon-interactions": "^7.0.18",
"@storybook/addon-links": "^7.0.18",
"@storybook/blocks": "^7.0.18",
"@storybook/nextjs": "^7.0.18",
"@storybook/react": "^7.0.18",
"@storybook/testing-library": "^0.0.14-next.2",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/cheerio": "^0.22.31",
"@types/cli-progress": "^3.11.0",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"autoprefixer": "^10.4.13",
"cli-progress": "^3.12.0",
"eslint-plugin-storybook": "^0.6.12",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-css-order": "^1.3.0",
"prisma": "^4.10.1",
"sass": "^1.58.0",
"storybook": "^7.0.18",
"ts-dedent": "^2.2.0",
"tsx": "^3.12.7",
"uuid": "^9.0.0"
}
}