intials app
This commit is contained in:
42
package.json
Normal file
42
package.json
Normal file
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"name": "lst",
|
||||
"version": "1.0.0",
|
||||
"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": "cd lstDocs && npm start",
|
||||
"dev:front": "cd frontend && npm run dev",
|
||||
"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": "npm run build:docs && npm run build:front && npm run build:app",
|
||||
"start:app": "set NODE_ENV=production && node dist/main.js",
|
||||
"start": "dotenvx run -f .env -- npm run start:app",
|
||||
"docker": "docker build --no-cache -t lst-test ."
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://git.tuffraid.net/cowch/lst.git"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"type": "module",
|
||||
"dependencies": {
|
||||
"@dotenvx/dotenvx": "^1.49.0",
|
||||
"express": "^5.1.0",
|
||||
"morgan": "^1.10.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/express": "^5.0.3",
|
||||
"@types/morgan": "^1.9.10",
|
||||
"@types/node": "^24.3.0",
|
||||
"ts-node-dev": "^2.0.0",
|
||||
"tsx": "^4.20.4",
|
||||
"typescript": "^5.9.2"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user