-
Notifications
You must be signed in to change notification settings - Fork 235
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 976 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 976 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
34
35
{
"name": "codeconverter",
"version": "10.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"start": "vite",
"test": "vitest",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint ./src/"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"axios": "^1.13.5",
"bootstrap": "^5.3.8",
"monaco-editor": "^0.55.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-bootstrap": "^0.26.3",
"react-router-dom": "^7.13.0",
"reactstrap": "^9.2.3"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^27.0.1",
"typescript": "~5.7.2",
"vite": "^6.4.2",
"vitest": "^3.2.4"
}
}