-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.32 KB
/
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
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
75
76
77
78
79
80
81
82
83
84
{
"name": "arcade-docs",
"version": "0.0.1",
"description": "Arcade Documentation",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --write \"*/**/*.{js,jsx,json,ts,tsx,css,md}\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArcadeAI/arcade-ai.git"
},
"authors": [
"Sam Partee <sam@arcade.dev>",
"Nate Barbettini <nate@arcade.dev>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ArcadeAI/arcade-ai/issues"
},
"homepage": "https://arcade.dev/",
"dependencies": {
"@icons-pack/react-simple-icons": "^10.2.0",
"@radix-ui/react-slot": "^1.1.1",
"@uidotdev/usehooks": "^2.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.16.0",
"lucide-react": "^0.469.0",
"next": "^15.1.3",
"next-themes": "^0.4.4",
"nextra": "^3.3.1",
"nextra-theme-docs": "^3.3.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-syntax-highlighter": "^15.6.1",
"remark-code-import": "^1.2.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@cloudflare/next-on-pages": "1.13.7",
"@next/eslint-plugin-next": "^15.1.3",
"@types/mdx": "^2.0.13",
"@types/node": "22.10.5",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"autoprefixer": "^10.4.20",
"eslint-config-next": "^15.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"typescript": "5.7.3",
"typescript-eslint": "^8.19.0"
},
"engines": {
"node": "22.x",
"pnpm": ">=9.15.4"
},
"pnpm": {
"overrides": {
"tar@<6.2.1": ">=6.2.1",
"cookie@<0.7.0": ">=0.7.0",
"undici@>=4.5.0 <5.28.5": ">=5.28.5",
"path-to-regexp@>=4.0.0 <6.3.0": ">=6.3.0",
"dompurify@<3.2.4": ">=3.2.4",
"esbuild@<=0.24.2": ">=0.25.0"
}
}
}