-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.57 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
{
"name": "building-react-components-from-scratch",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@heroicons/react": "^2.0.13",
"@radix-ui/react-context-menu": "^2.1.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-popover": "^1.0.7",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"clsx": "^1.2.1",
"eslint": "8.31.0",
"eslint-config-next": "14.2.3",
"fathom-client": "^3.5.0",
"framer-motion": "^10.12.17",
"is-hotkey": "^0.2.0",
"lodash.clamp": "^4.0.3",
"motion": "^10.16.2",
"next": "^14.2.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hotkeys-hook": "^4.4.1",
"react-spring": "^9.7.2",
"react-transition-group": "^4.4.5",
"typescript": "4.9.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.8",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/is-hotkey": "^0.1.7",
"@types/lodash.clamp": "^4.0.7",
"@types/react-transition-group": "^4.4.6",
"@types/uuid": "^9.0.0",
"autoprefixer": "^10.4.13",
"eslint-config-prettier": "^8.5.0",
"postcss": "^8.4.20",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.2.4"
}
}