generated from jellydn/next-app-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
109 lines (109 loc) · 2.91 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
105
106
107
108
109
{
"name": "lens-demo-app",
"version": "0.1.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"
},
"lint-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"
]
},
"resolutions": {
"postcss": "8.4.24"
},
"dependencies": {
"@apollo/client": "3.7.15",
"@headlessui/react": "1.7.15",
"@heroicons/react": "2.0.18",
"@hookform/devtools": "4.3.1",
"@hookform/resolvers": "3.1.1",
"@rainbow-me/rainbowkit": "0.12.14",
"@rainbow-me/rainbowkit-siwe-next-auth": "0.2.0",
"@tailwindcss/forms": "0.5.3",
"class-variance-authority": "0.6.0",
"daisyui": "2.52.0",
"ethers": "5.7.2",
"graphql": "16.6.0",
"jotai": "1.13.1",
"loglevel": "1.8.1",
"next": "13.4.5",
"next-auth": "4.22.1",
"next-secure-headers": "2.2.0",
"next-validations": "0.3.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.44.3",
"react-hot-toast": "2.4.1",
"siwe": "2.1.4",
"use-local-storage-state": "18.3.3",
"wagmi": "0.12.15",
"yup": "1.2.0"
},
"devDependencies": {
"@babel/core": "7.22.5",
"@storybook/addon-essentials": "7.0.20",
"@storybook/addon-interactions": "7.0.20",
"@storybook/addon-links": "7.0.20",
"@storybook/nextjs": "7.0.20",
"@storybook/react": "7.0.20",
"@storybook/testing-library": "0.1.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@types/react": "18.2.12",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"@vitejs/plugin-react": "3.1.0",
"@vitest/ui": "0.32.0",
"autoprefixer": "10.4.14",
"@babel/eslint-parser": "7.22.5",
"babel-jest": "29.5.0",
"babel-loader": "9.1.2",
"c8": "7.14.0",
"concurrently": "8.2.0",
"eslint": "8.42.0",
"eslint-config-next": "13.4.5",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-storybook": "0.6.12",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jest-fetch-mock": "3.0.3",
"jsdom": "21.1.2",
"lint-staged": "13.2.2",
"msw": "1.2.2",
"postcss": "8.4.24",
"prettier": "2.8.8",
"rustywind": "0.16.0",
"sort-package-json": "2.4.1",
"storybook": "7.0.20",
"tailwindcss": "3.3.2",
"typescript": "5.1.3",
"vite": "4.3.9",
"vitest": "0.32.0"
},
"msw": {
"workerDirectory": "public"
}
}