71 lines
2.6 KiB
JSON
71 lines
2.6 KiB
JSON
{
|
|
"name": "lst",
|
|
"version": "1.0.1",
|
|
"description": "Logistics support tool - the place where the support happens.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"dev:app": "dotenvx run -f .env -- tsx watch app/src/main.ts",
|
|
"dev:docs": "npm run translateDocs && cd lstDocs && npm start",
|
|
"dev:front": "cd frontend && npm run dev",
|
|
"dev": "npm run dev:app",
|
|
"copy:docs": "node scripts/lstDocCopy.mjs",
|
|
"build:app": "rimraf dist && npx tsc",
|
|
"build:front": "cd frontend && rimraf dist && npm run build",
|
|
"build:docs": "cd lstDocs && rimraf build && npm run build",
|
|
"build:wrapper": "cd lstWrapper && rimraf publish && dotnet publish -c Release -o ./publish",
|
|
"build:ctl": " ",
|
|
"build": "npm run build:docs && npm run build:front && npm run build:app",
|
|
"install:front": "cd frontend && npm i",
|
|
"install:docs": "cd lstDocs && npm i",
|
|
"install:app": "npm i",
|
|
"start:app": "node dist/main.js",
|
|
"start": "dotenvx run -f .env -- npm run start:app",
|
|
"start:win": "set NODE_ENV=production && node dist/main.js",
|
|
"docker": "docker compose up --build --force-recreate -d",
|
|
"commit": "cz",
|
|
"deploy": "standard-version --conventional-commits && npm run build",
|
|
"db:migrate": "npx drizzle-kit push --config=drizzle-dev.config.ts",
|
|
"db:generate": "npx drizzle-kit generate --config=drizzle-dev.config.ts",
|
|
"translateDocs": "cd scripts && node translateScript.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.tuffraid.net/cowch/lst.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@dotenvx/dotenvx": "^1.49.0",
|
|
"drizzle-kit": "^0.31.4",
|
|
"drizzle-orm": "^0.44.5",
|
|
"drizzle-zod": "^0.8.3",
|
|
"express": "^5.1.0",
|
|
"morgan": "^1.10.1",
|
|
"mssql": "^11.0.1",
|
|
"pg": "^8.16.3",
|
|
"pino": "^9.9.0",
|
|
"pino-pretty": "^13.1.1",
|
|
"postgres": "^3.4.7",
|
|
"zod": "^4.1.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.3",
|
|
"@types/morgan": "^1.9.10",
|
|
"@types/mssql": "^9.1.7",
|
|
"@types/node": "^24.3.0",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"standard-version": "^9.5.0",
|
|
"ts-node-dev": "^2.0.0",
|
|
"tsx": "^4.20.4",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|