-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.37 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.37 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
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev:frontend": "vite",
"dev:backend": "cd api && ./venv/bin/flask --app index run -p 5328",
"dev:rust": "cd api/vanity && cargo build --release && cp -f target/release/vanity ../bin/vanity",
"dev": "concurrently -c \"cyan,magenta\" \"npm run dev:frontend\" \"npm run dev:backend\" \"npm run dev:rust\"",
"build": "vite build",
"lint": "eslint src",
"prune:i18n": "node scripts/prune-i18n.mjs",
"prune:i18n:unused": "node scripts/prune-unused-i18n.mjs",
"verify:errors": "node scripts/verify-formatApiError.mjs",
"build:vanity": "cd api/vanity && cargo build --release && cp -f target/release/vanity ../bin/vanity",
"vercel-build": "npm run build",
"preview": "vite preview"
},
"dependencies": {
"jspdf": "^4.2.1",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"vite": "^8.0.10"
}
}