This repository was archived by the owner on Mar 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.56 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.56 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
{
"name": "plateerag",
"version": "0.1.0",
"description": "A visual workflow editor for building AI-powered applications with drag-and-drop nodes",
"private": true,
"keywords": [
"workflow",
"visual-editor",
"ai",
"nodes",
"drag-drop",
"canvas",
"automation"
],
"author": "Plateer AI-LAB, CocoRoF, haesookimDev",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"build:embed": "esbuild src/lib/chatbot-embed.ts --bundle --format=esm --outfile=public/chatbot-embed.js --minify",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"prepare": "husky"
},
"dependencies": {
"@eslint/compat": "^1.3.1",
"@eslint/eslintrc": "^3.3.1",
"@types/d3": "^7.4.3",
"chart.js": "^4.5.0",
"chartjs-adapter-date-fns": "^3.0.0",
"d3": "^7.9.0",
"date-fns": "^4.1.0",
"dotenv": "^17.2.0",
"framer-motion": "^12.23.6",
"katex": "^0.16.22",
"mammoth": "^1.10.0",
"next": "15.3.2",
"pdfjs-dist": "^5.4.54",
"react": "^19.0.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.5.2",
"react-icons": "^5.5.0",
"react-katex": "^3.1.0",
"react-pdf": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"sass": "^1.89.2",
"scss": "^0.2.4",
"typescript-eslint": "^8.37.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^15.4.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"esbuild": "^0.25.8",
"eslint": "^9.31.0",
"eslint-config-next": "^15.4.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"typescript": "^5"
}
}