forked from KarthikS373/arc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.91 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.91 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "arc",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "node post-build.js",
"start": "next start",
"lint": "next lint",
"lint:eslint": "eslint . --fix --ext ts --ext tsx --ext js",
"lint-staged": "lint-staged",
"format": "prettier --write .",
"update": "yarn upgrade-interactive --latest",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@google/generative-ai": "^0.17.1",
"@headlessui/react": "^2.1.3",
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@tanstack/react-query": "^5.55.4",
"@types/lodash": "^4.17.7",
"@types/react-slick": "^0.23.13",
"ai": "^3.3.30",
"archiver": "^7.0.1",
"autocomplete-react-search": "^8.6.5",
"axios": "^1.7.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"connectkit": "^1.8.2",
"ethers": "^6.13.2",
"file-saver": "^2.0.5",
"framer-motion": "^11.3.30",
"html-to-text": "^9.0.5",
"husky": "^9.1.5",
"jotai": "^2.9.3",
"js-cookie": "^3.0.5",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"marked": "^14.1.2",
"minidenticons": "^4.2.1",
"monaco-editor": "^0.51.0",
"next": "14.1.0",
"pdf-lib": "^1.17.1",
"react": "^18.3.1",
"react-code-blocks": "^0.1.6",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-markdown": "^9.0.1",
"react-search-autocomplete": "^8.5.2",
"react-search-box": "^3.0.0",
"react-slick": "^0.30.2",
"react-spinners": "^0.14.1",
"remark-gfm": "^4.0.0",
"rodal": "^2.1.0",
"slick-carousel": "^1.8.1",
"solc": "^0.8.27",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"vaul": "^0.9.1",
"viem": "^2.7.9",
"wagmi": "^2.5.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@types/archiver": "^6.0.2",
"@types/file-saver": "^2.0.7",
"@types/html-to-text": "^9.0.4",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.5.1",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"lint-staged": "^15.2.9",
"postcss": "^8.4.41",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4"
},
"resolutions": {
"strip-ansi": "6.0.1",
"string-width": "4.2.2",
"wrap-ansi": "7.0.0"
}
}