forked from toniebox-reverse-engineering/teddycloud_web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.18 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "teddycloud-web",
"version": "0.6.8",
"private": true,
"homepage": "/web",
"dependencies": {
"@ant-design/icons": "^6.1.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@remix-run/router": "^1.23.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/w3c-web-serial": "^1.0.8",
"@vitejs/plugin-react": "^5.1.4",
"antd": "^6.3.0",
"esptool-js": "^0.5.7",
"formik": "^2.4.9",
"i18next": "^25.8.7",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-http-backend": "^3.0.2",
"jszip": "^3.10.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.5.4",
"react-markdown": "^10.1.0",
"react-minimal-pie-chart": "^9.1.2",
"react-router-dom": "^7.13.0",
"react-syntax-highlighter": "^16.1.0",
"styled-components": "^6.3.9",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-svgr": "^4.5.0",
"vite-tsconfig-paths": "^6.1.1",
"yup": "^1.7.1"
},
"devDependencies": {
"@babel/plugin-transform-private-property-in-object": "^7.28.6",
"@types/js-yaml": "^4.0.9",
"@types/react-syntax-highlighter": "^15.5.13",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0"
},
"scripts": {
"start-http": "cross-env PORT=3000 vite",
"start-https": "cross-env HTTPS=true PORT=3443 vite",
"start": "concurrently \"npm run start-http\" \"npm run start-https\"",
"build": "tsc && vite build",
"preview": "vite preview"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"tabWidth": 4,
"printWidth": 120
},
"type": "module"
}