mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2026-03-01 12:44:17 +00:00
set nodejs version to current lts version application-wide
This commit is contained in:
parent
27ebc26a41
commit
60c955afbc
@ -1 +1 @@
|
||||
nodejs 20.12.1
|
||||
nodejs 22.20.0
|
||||
|
||||
3
app/package-lock.json
generated
3
app/package-lock.json
generated
@ -50,6 +50,9 @@
|
||||
"typescript": "^5.0.2",
|
||||
"vite": "^6.2.0",
|
||||
"vite-plugin-pwa": "^0.21.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=22.20.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@ampproject/remapping": {
|
||||
|
||||
@ -3,6 +3,9 @@
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
"engines": {
|
||||
"node": ">=22.20.0"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "vite --host",
|
||||
"build": "tsc && vite build",
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
FROM node:20-alpine as third-party-ext
|
||||
FROM node:22.20.0-alpine as third-party-ext
|
||||
RUN apk add python3 g++ make
|
||||
WORKDIR /extensions
|
||||
ADD extensions .
|
||||
|
||||
20
backend/directus-sync.config.js
Normal file
20
backend/directus-sync.config.js
Normal file
@ -0,0 +1,20 @@
|
||||
module.exports = {
|
||||
// Directus connection settings
|
||||
directusUrl: process.env.DIRECTUS_URL || 'http://localhost:8055',
|
||||
directusEmail: process.env.DIRECTUS_EMAIL || 'admin@it4c.dev',
|
||||
directusPassword: process.env.DIRECTUS_PASSWORD || 'admin123',
|
||||
|
||||
// Sync settings
|
||||
dumpPath: './directus-config/development',
|
||||
seedPath: './directus-config/development/seed',
|
||||
|
||||
// Reduce verbosity of dependency warnings
|
||||
logLevel: 'info',
|
||||
|
||||
// Increase timeout for complex operations
|
||||
timeout: 30000,
|
||||
|
||||
// Retry settings for dependency resolution
|
||||
maxRetries: 5,
|
||||
retryDelay: 1000
|
||||
}
|
||||
@ -1,5 +1,8 @@
|
||||
{
|
||||
"name": "directus-extensions",
|
||||
"engines": {
|
||||
"node": ">=22.20.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"directus-extension-sync": "3.0.4"
|
||||
}
|
||||
|
||||
3
lib/package-lock.json
generated
3
lib/package-lock.json
generated
@ -97,6 +97,9 @@
|
||||
"vite-plugin-svgr": "^4.3.0",
|
||||
"vitest": "^3.0.5"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=22.20.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0"
|
||||
|
||||
@ -4,6 +4,9 @@
|
||||
"description": "Reuseable React Components to build mapping apps for real life communities and networks",
|
||||
"repository": "https://github.com/utopia-os/utopia-ui",
|
||||
"homepage": "https://utopia-os.org/",
|
||||
"engines": {
|
||||
"node": ">=22.20.0"
|
||||
},
|
||||
"module": "./dist/index.esm.js",
|
||||
"main": "./dist/index.cjs",
|
||||
"types": "./dist/index.d.ts",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user