-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.41 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
{
"name": "validflow",
"version": "1.5.6",
"description": "ValidFlow is a desktop software that automatically helps it's user to arrange their'files, folders and documents.",
"main": "index.js",
"scripts": {
"test": "echo \"No tests defined. Please add test scripts.\" && exit 1",
"release": "standard-version --skip.commit --skip.tag && node update-tauri-version.js && node -e \"const v=require('./package.json').version; require('child_process').execSync(`git add package.json CHANGELOG.md validflow-frontend/src-tauri/Cargo.toml validflow-frontend/src-tauri/tauri.conf.json && git commit -m \\\"chore(release): bump version to ${v}\\\" && git tag -a v${v} -m \\\"Release v${v}\\\" && git push --follow-tags`, {stdio:'inherit'})\"",
"dev:frontend:tauri": "cd validflow-frontend && npm run tauri dev",
"dev:frontend": "cd validflow-frontend && npm run dev",
"dev:backend": "cd validflow-backend && uvicorn app.main:app --reload",
"dev:tauri": "concurrently -n FRONTEND,BACKEND -c green,blue \"npm run dev:frontend tauri\" \"npm run dev:backend\"",
"dev": "concurrently -n FRONTEND,BACKEND -c green,blue \"npm run dev:frontend\" \"npm run dev:backend\""
},
"keywords": [
"auto-arrange",
"folders",
"files",
"arrange",
"sort"
],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"concurrently": "^9.2.0",
"standard-version": "^9.5.0"
}
}