Add .npmrc configuration and update package.json

- Created a new .npmrc file with custom settings for package-lock and registry
- Updated package.json to include new devDependencies for @types/express and @types/morgan
- Restored private status and scripts section in package.json, ensuring proper project setup
This commit is contained in:
2025-10-30 03:13:51 -04:00
parent e18e3523e5
commit 3fe157541c
2 changed files with 23 additions and 15 deletions

3
.npmrc Normal file
View File

@@ -0,0 +1,3 @@
package-lock=false
save-exact=true
@techniker-me:registry=https://npm.techniker.me

View File

@@ -1,8 +1,23 @@
{ {
"name": "myoopapp", "name": "myoopapp",
"module": "index.ts",
"type": "module",
"author": "Alexander Zinn", "author": "Alexander Zinn",
"module": "index.ts",
"devDependencies": {
"@eslint/js": "9.38.0",
"@eslint/json": "0.13.2",
"@eslint/markdown": "7.5.0",
"@types/bun": "latest",
"@types/express": "5.0.5",
"@types/morgan": "1.9.10",
"eslint": "9.38.0",
"globals": "16.4.0",
"jiti": "2.6.1",
"prettier": "3.6.2",
"typescript-eslint": "8.46.2"
},
"peerDependencies": {
"typescript": "5.9.3"
},
"private": true, "private": true,
"scripts": { "scripts": {
"format": "prettier --write .", "format": "prettier --write .",
@@ -12,18 +27,8 @@
"test": "bun test", "test": "bun test",
"test:watch": "bun test --watch" "test:watch": "bun test --watch"
}, },
"devDependencies": { "type": "module",
"@eslint/js": "9.38.0", "dependencies": {
"@eslint/json": "0.13.2", "@techniker-me/tools": "2025.0.16"
"@eslint/markdown": "7.5.0",
"@types/bun": "latest",
"eslint": "9.38.0",
"globals": "16.4.0",
"jiti": "2.6.1",
"prettier": "3.6.2",
"typescript-eslint": "8.46.2"
},
"peerDependencies": {
"typescript": "5.9.3"
} }
} }