forked from Walkover-Web-Solution/gtwy-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.02 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.02 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
{
"name": "ai-middleware-frontend-new",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"build:pages": "npx @cloudflare/next-on-pages"
},
"dependencies": {
"@calcom/embed-react": "^1.5.2",
"@codemirror/lang-json": "^6.0.2",
"@floating-ui/react": "^0.27.12",
"@next/third-parties": "^16.1.4",
"@reduxjs/toolkit": "^2.2.0",
"@uiw/codemirror-themes": "^4.25.9",
"@uiw/react-codemirror": "^4.25.9",
"@xyflow/react": "^12.8.2",
"axios": "1.14.0",
"lodash": "^4.17.21",
"lucide-react": "^0.542.0",
"next": "15.5.2",
"posthog-js": "^1.315.1",
"react": "^19.1.1",
"react-apexcharts": "^1.7.0",
"react-dom": "^19.1.1",
"react-infinite-scroll-component": "^6.1.0",
"react-markdown": "^9.0.1",
"react-redux": "^9.1.0",
"react-resizable-panels": "^3.0.6",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^10.0.4",
"redux-persist": "^6.0.0",
"rtlayer-client": "^1.5.5"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.16",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"autoprefixer": "^10.0.1",
"daisyui": "^4.7.0",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-no-commented-code": "^1.0.10",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-unused-imports": "^4.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"npm-check": "^6.0.1",
"postcss": "^8",
"prettier": "^3.8.0",
"tailwindcss": "^3.3.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"node scripts/lint-staged.js"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}