-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.81 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
110
111
112
113
{
"name": "popgdp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "pnpm drizzle:migrate && next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest watch",
"prettier": "prettier . --check --cache",
"check": "pnpm run \"/(build|test|prettier)$/\"",
"lint:fix": "next lint --fix && prettier . --cache --write",
"test:e2e": "playwright test",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"drizzle:migrate": "tsx -r dotenv/config ./src/drizzle/migrate.ts dotenv_config_path=.env",
"drizzle:migrate-test": "tsx -r dotenv/config ./src/drizzle/migrate.ts dotenv_config_path=.env.test",
"drizzle:studio": "drizzle-kit studio",
"drizzle:generate": "drizzle-kit generate:pg",
"drizzle:push": "drizzle-kit push:pg",
"drizzle:seed": "tsx -r dotenv/config ./src/drizzle/seed.ts dotenv_config_path=.env"
},
"dependencies": {
"@auth0/nextjs-auth0": "^3.5.0",
"@hookform/resolvers": "^3.3.4",
"@lexical/code": "^0.13.1",
"@lexical/link": "^0.13.1",
"@lexical/list": "^0.13.1",
"@lexical/markdown": "^0.13.1",
"@lexical/react": "^0.13.1",
"@lexical/rich-text": "^0.13.1",
"@lexical/selection": "^0.13.1",
"@lexical/utils": "^0.13.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@rainbow-me/rainbowkit": "^2.0.5",
"@t3-oss/env-nextjs": "^0.9.2",
"@tanstack/react-query": "^5.29.2",
"@types/lodash.debounce": "^4.0.9",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"csv": "^6.3.8",
"drizzle-orm": "^0.30.9",
"lexical": "^0.13.1",
"lodash.debounce": "^4.0.8",
"next": "14.1.4",
"next-axiom": "^1.1.1",
"postgres": "^3.4.4",
"react": "^18.2.0",
"react-day-picker": "^8.10.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.3",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"sharp": "^0.33.3",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"unified": "^11.0.4",
"viem": "~2.9.17",
"wagmi": "^2.5.19",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@playwright/test": "^1.43.1",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^7.6.17",
"@storybook/nextjs": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/test": "^7.6.17",
"@tailwindcss/typography": "^0.5.12",
"@types/node": "^20.12.7",
"@types/react": "^18.2.78",
"@types/react-dom": "^18.2.25",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"autoprefixer": "^10.4.19",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.20.17",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-unused-imports": "^3.1.0",
"pg": "^8.11.5",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"storybook": "^7.6.17",
"tailwindcss": "^3.4.3",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
}
}