-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.22 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
75
{
"name": "teddycloud-web",
"version": "0.7.0",
"private": true,
"homepage": "/web",
"dependencies": {
"@ant-design/icons": "^6.3.2",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@remix-run/router": "^1.23.4",
"@types/jest": "^30.0.0",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@types/w3c-web-serial": "^1.0.8",
"@vitejs/plugin-react": "^6.0.5",
"antd": "^6.6.1",
"formik": "^2.4.9",
"i18next": "^26.3.6",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-http-backend": "^4.0.1",
"jszip": "^3.10.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-i18next": "^17.0.11",
"react-markdown": "^10.1.0",
"react-minimal-pie-chart": "^9.1.2",
"react-router-dom": "^7.18.2",
"react-syntax-highlighter": "^16.1.1",
"styled-components": "^6.5.3",
"typescript": "^7.0.2",
"vite": "^8.2.1",
"vite-plugin-svgr": "^5.2.0",
"yup": "^1.7.1"
},
"devDependencies": {
"@babel/plugin-transform-private-property-in-object": "^8.0.1",
"@types/js-yaml": "^4.0.9",
"@types/react-syntax-highlighter": "^15.5.13",
"concurrently": "^10.0.5",
"cross-env": "^10.1.0",
"prettier": "^3.9.6"
},
"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",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"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": 100
},
"type": "module"
}