-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 990 Bytes
/
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
{
"name": "my-app",
"version": "0.1.0",
"author": "Nik Schaefer <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NikSchaefer/"
},
"keywords": [
"NextJS"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"postbuild": "next-sitemap",
"clean": "npx prettier --write ."
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.0",
"cmdk": "^1.0.0",
"framer-motion": "^11.14.4",
"lucide-react": "^0.468.0",
"next": "15.1.1",
"next-seo": "^6.0.0",
"next-sitemap": "^4.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.6",
"typescript": "^5.7.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@types/node": "^22.10.2",
"@types/react": "^18.2.79",
"autoprefixer": "^10.4.16",
"eslint": "^9.17.0",
"eslint-config-galex": "^4.4.2",
"prettier": "^3.4.2"
}
}