-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "dmds.dev",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@google/genai": "^1.50.1",
"highlight.js": "^11.9.0",
"mime": "^4.1.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^3.0.0",
"react-icons": "^5.0.1",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.21.3",
"rehype-raw": "^7.0.0"
},
"scripts": {
"dev": "vite",
"dev:netlify": "netlify dev",
"build": "vite build",
"build:prerender": "vite build && node scripts/prerender.mjs",
"preview": "vite preview",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"netlify-cli": "^17.15.5",
"sass": "^1.70.0",
"vite": "^5.0.12",
"vite-plugin-prerender": "^1.0.8"
}
}