forked from jellydn/next-app-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.21 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "next-app-starter",
"version": "0.2.0",
"private": true,
"scripts": {
"build": "next build",
"coverage": "vitest run --coverage",
"dev": "next dev",
"dev:turbo": "next dev --turbo",
"prepare": "husky install",
"start": "next start",
"test": "vitest",
"test:ui": "vitest --ui",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"nano-staged": {
"*.{js,ts,tsx}": [
"eslint --cache --fix",
"prettier --write",
"rustywind --write"
],
"*.{css,json,md,yml,yaml}": [
"prettier --write"
],
"package.json": "sort-package-json"
},
"babel": {
"presets": [
"next/babel"
]
},
"dependencies": {
"@headlessui/react": "1.7.13",
"@heroicons/react": "2.0.16",
"@hookform/devtools": "4.3.1",
"@hookform/resolvers": "2.9.11",
"@next-auth/prisma-adapter": "1.0.5",
"@prisma/client": "4.11.0",
"@tailwindcss/forms": "0.5.3",
"@tanstack/react-query": "4.26.1",
"@tanstack/react-query-devtools": "4.26.1",
"class-variance-authority": "0.4.0",
"consola": "2.15.3",
"jotai": "2.0.3",
"loglevel": "1.8.1",
"next": "13.2.4",
"next-auth": "4.20.1",
"next-secure-headers": "2.2.0",
"next-validations": "0.3.1",
"nodemailer": "6.9.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.43.5",
"zod": "3.21.4"
},
"devDependencies": {
"@babel/core": "7.21.3",
"@storybook/addon-essentials": "7.0.0-rc.3",
"@storybook/addon-interactions": "7.0.0-rc.3",
"@storybook/addon-links": "7.0.0-rc.3",
"@storybook/nextjs": "7.0.0-alpha.41",
"@storybook/react": "7.0.0-rc.3",
"@storybook/testing-library": "0.0.13",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@types/react": "18.0.28",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"@vitejs/plugin-react": "3.1.0",
"@vitest/ui": "0.29.3",
"autoprefixer": "10.4.14",
"@babel/eslint-parser": "7.21.3",
"babel-jest": "29.5.0",
"babel-loader": "9.1.2",
"c8": "7.13.0",
"concurrently": "7.6.0",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-storybook": "0.6.11",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jest-fetch-mock": "3.0.3",
"jsdom": "21.1.1",
"kutty": "0.6.0",
"msw": "1.1.0",
"nano-staged": "0.8.0",
"postcss": "8.4.21",
"prettier": "2.8.4",
"prisma": "4.11.0",
"rustywind": "0.15.3",
"sort-package-json": "2.4.1",
"storybook": "7.0.0-rc.3",
"tailwindcss": "3.2.7",
"typescript": "4.9.5",
"vite": "4.1.4",
"vitest": "0.29.3"
},
"msw": {
"workerDirectory": "public"
}
}