forked from ob-community/open-balena-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "open-balena-ui",
"version": "0.7.3",
"private": true,
"engines": {
"node": ">=24"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.913.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^6.5.0",
"@mui/material": "^6.5.0",
"assert": "^2.1.0",
"axios": "^1.12.2",
"base32-encode": "^2.0.0",
"bcrypt-ts": "^7.1.0",
"buffer": "^6.0.3",
"classnames": "^2.5.1",
"core-js": "^3.46.0",
"dateformat": "^5.0.3",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"express-slow-down": "^3.0.0",
"final-form": "^5.0.0",
"jose": "^6.1.0",
"jwt-decode": "^4.0.0",
"micro-key-producer": "^0.8.2",
"process": "^0.11.10",
"prop-types": "^15.8.1",
"query-string": "^9.3.1",
"ra-core": "^5.12.1",
"react": "^19.2.3",
"react-admin": "^5.12.1",
"react-dom": "^19.2.3",
"react-final-form": "^7.0.0",
"react-hook-form": "^7.65.0",
"react-password-checklist": "^1.8.1",
"react-router": "^7.9.4",
"react-router-dom": "^7.9.4",
"regenerator-runtime": "^0.14.1",
"semver": "^7.7.3",
"serialize-javascript": "^7.0.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/dateformat": "^5.0.3",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.23",
"@types/express-rate-limit": "^5.1.3",
"@types/express-slow-down": "^1.3.5",
"@types/node": "^24.8.1",
"@types/query-string": "^6.2.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vercel/ncc": "^0.38.3",
"@vitejs/plugin-react-swc": "^4.1.0",
"eslint-config-react-app": "^7.0.1",
"prettier": "^3.6.2",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"vite": "^6.4.0"
},
"scripts": {
"start": "npm run build && npm run serve",
"serve": "node dist/server/index.js",
"serve:dev": "tsx --env-file=.env server/index.ts",
"dev": "vite --mode devprod",
"dev:local": "vite --mode local",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build",
"build:server": "ncc build server/index.ts -o dist/server -m",
"preview": "vite preview --outDir dist/client",
"typecheck": "tsc --noEmit",
"prettier": "prettier --write ."
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}