-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.95 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.95 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
{
"name": "trace-web",
"version": "1.0.0",
"description": "Official website for Trace - Professional iOS network debugger",
"main": "index.js",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --webpack",
"start": "next start",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run lint && npm run build",
"lint": "eslint . --max-warnings=0 && prettier --check .",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Trace-iOS/trace-web.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Trace-iOS/trace-web/issues"
},
"homepage": "https://github.com/Trace-iOS/trace-web#readme",
"engines": {
"node": ">=20.19.0"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.34.5",
"fuse.js": "^7.1.0",
"lucide-react": "^0.576.0",
"mermaid": "^11.12.3",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"shiki": "^4.0.1",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@mdx-js/loader": "^3.1.1",
"@next/mdx": "^16.1.6",
"@tailwindcss/postcss": "^4.2.1",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.27",
"eslint": "10.0.2",
"eslint-config-next": "^16.1.6",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"rehype-slug": "^6.0.0",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3"
}
}