-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.58 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
{
"name": "erdplus-converter",
"version": "1.0.0",
"description": "Lossless converter between ERDPlus old and new JSON formats (composite FKs supported).",
"private": false,
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/your-user/erdplus-converter.git"
},
"bugs": {
"url": "https://github.com/your-user/erdplus-converter/issues"
},
"homepage": "https://erdplus-converter.vercel.app",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --strictPort --port 4173",
"test": "vitest run",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"format": "prettier --write .",
"cli": "node dist/cli.js"
},
"dependencies": {
"clsx": "^2.1.1",
"framer-motion": "^12.23.12",
"i18next": "^23.7.16",
"lucide-react": "^0.542.0",
"react": "18",
"react-dom": "18",
"react-i18next": "^15.3.1",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^6",
"remark-gfm": "^4.0.1",
"typeorm": "^0.3.26"
},
"devDependencies": {
"@types/node": "^24.3.1",
"@types/react": "18",
"@types/react-dom": "18",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^5.2.0",
"postcss": "^8.4.38",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vite": "^5.4.19",
"vitest": "^1.6.0"
}
}