-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.21 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.21 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
{
"name": "duolingo_clone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"db:studio": "npx drizzle-kit studio",
"db:push": "npx drizzle-kit push",
"db:seed": "tsx ./scripts/seed.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"tailwind": "npx tailwindcss -i ./app/globals.css -o ./output.css --watch"
},
"dependencies": {
"@clerk/nextjs": "^5.0.2",
"@neondatabase/serverless": "^0.9.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-slot": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.10",
"lucide-react": "^0.372.0",
"next": "14.2.2",
"next-themes": "^0.3.0",
"react": "^18",
"react-circular-progressbar": "^2.2.0",
"react-dom": "^18",
"react-use": "^17.6.0",
"sonner": "^1.4.41",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"zustand": "^5.0.7"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@chromatic-com/storybook": "^1.4.0",
"@jest/globals": "^29.7.0",
"@storybook/addon-essentials": "^8.1.3",
"@storybook/addon-interactions": "^8.1.3",
"@storybook/addon-links": "^8.1.3",
"@storybook/addon-onboarding": "^8.1.3",
"@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/blocks": "^8.1.3",
"@storybook/nextjs": "^8.1.3",
"@storybook/react": "^8.1.3",
"@storybook/test": "^8.1.3",
"@testing-library/jest-dom": "^5.4.5",
"@testing-library/react": "^15.0.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"babel-jest": "^29.7.0",
"drizzle-kit": "^0.21.2",
"eslint": "^8",
"eslint-config-next": "14.2.2",
"eslint-plugin-storybook": "^0.8.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"storybook": "^8.1.3",
"tailwindcss": "^3.4.1",
"tsx": "^4.10.5",
"typescript": "^5"
}
}