-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "@incubator/mcpshim-site",
"version": "0.0.0",
"private": true,
"scripts": {
"setup": "true",
"build": "run-s build:*",
"build:01-next": "next build",
"build:02-sitemap": "next-sitemap",
"check": "tsc --noEmit --incremental",
"clean": "run-s clean:*",
"clean:00-next": "rimraf .next",
"clean:01-tsbuildinfo": "rimraf *.tsbuildinfo",
"clean:02-dist": "rimraf dist",
"clean:03-node_modules": "rimraf node_modules",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"test:integration": "true"
},
"dependencies": {
"clsx": "^2.1.0",
"framer-motion": "^12.34.1",
"lucide-react": "^0.474.0",
"next": "^16.1.6",
"next-sitemap": "^4.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@types/node": "^22.16.0",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"autoprefixer": "^10.4.17",
"eslint": "^8",
"eslint-config-next": "^14.2.24",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.9"
}
}