-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 966 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 966 Bytes
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
{
"name": "project-examples",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "eslint --fix \"{src,__tests__,types}/**/*.{ts,tsx,js,json}\"",
"format": "prettier --write \"{src,__tests__,types}/**/*.{ts,tsx,js,json}\"",
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@rcb-plugins/llm-connector": "^0.3.2",
"react": "^18.3.0",
"react-chatbotify": "^2.1.0",
"react-dom": "^18.3.0"
},
"devDependencies": {
"@types/react": "^18.3.6",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.7.3",
"vite": "^6.3.4",
"eslint": "^9.20.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"prettier": "^3.5.3"
}
}