Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"lodash": "4.17.21",
"machinepack-passwords": "2.3.0",
"marked": "^16.4.1",
"node": "^24.15.0",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Node shouldn't be required as a dependency of the project. It's instead listed under "engines" below.

Suggested change
"node": "^24.15.0",

"pinia": "2.2.4",
"rollbar": "^2.26.5",
"sails": "^1.5.15",
Expand Down Expand Up @@ -51,7 +52,7 @@
"storybook": "7.6.0",
"supertest": "^7.1.4",
"vite": "^7.1.12",
"vite-plugin-vue-devtools": "^8.0.3",
"vite-plugin-vue-devtools": "^8.1.1",
"vite-plugin-vuetify": "^2.1.2",
"vitest": "^4.0.5",
"vue-eslint-parser": "^10.2.0"
Expand All @@ -74,7 +75,7 @@
"start:serve": "vite preview",
"start:client": "vite --host",
"start:server": "node app.js",
"start:preview": "npm run build;npm run start:server",
"start:preview": "npm run build && npm run start:server",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting catch. Do I take it you use cmd? I'd only used powershell when working with windows and that uses ; the same way bash does, so I'd never encountered this issue. It seems a noninvasive improvement to cross compatibility

"start:dev": "concurrently \"npm run start:client\" \"npm run start:server\"",
"start": "node app.js",
"build": "vite build",
Expand Down
Loading