-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite",
"lint:fix": "eslint --fix ./app/",
"lint:check": "eslint ./app/",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"preview": "vite preview"
},
"devDependencies": {
"@prettier/plugin-ruby": "^4.0.4",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"@vitejs/plugin-react": "^4.5.2",
"esbuild": "^0.25.9",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.6.2",
"sass-embedded": "^1.90.0",
"vite": "^5.4.19",
"vite-plugin-ruby": "^5.1.1"
},
"dependencies": {
"@google/genai": "^1.15.0",
"@google/generative-ai": "^0.24.1",
"bootstrap": "^5.3.7",
"bootstrap-icons": "^1.13.1",
"react": "^19.1.0",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.1.0"
}
}