create-uk-node-server 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ {
2
+ "dependi.npm.lockFileEnabled": true
3
+ }
package/bin/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  import main from "../index.js";
4
4
  main();
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-uk-node-server",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "A CLI tool to quickly scaffold server projects with JavaScript or TypeScript templates",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -12,7 +12,6 @@
12
12
  },
13
13
  "keywords": [
14
14
  "cli",
15
- "scaffold",
16
15
  "server",
17
16
  "javascript",
18
17
  "typescript",
@@ -14,9 +14,9 @@
14
14
  "type": "module",
15
15
  "dependencies": {
16
16
  "bcrypt": "^6.0.0",
17
- "dotenv": "^16.5.0",
17
+ "dotenv": "^17.2.3",
18
18
  "express": "^5.1.0",
19
- "mongoose": "^8.15.0",
20
- "nodemon": "^3.1.10"
19
+ "mongoose": "^9.0.0",
20
+ "nodemon": "^3.1.11"
21
21
  }
22
22
  }
@@ -10,17 +10,17 @@
10
10
  "watch": "tsc --watch"
11
11
  },
12
12
  "dependencies": {
13
- "express": "^4.18.2",
14
- "dotenv": "^16.3.1",
13
+ "express": "^5.1.0",
14
+ "dotenv": "^17.2.3",
15
15
  "cors": "^2.8.5",
16
- "mongoose": "^8.0.3"
16
+ "mongoose": "^9.0.0"
17
17
  },
18
18
  "devDependencies": {
19
- "@types/express": "^4.17.21",
20
- "@types/node": "^20.10.0",
21
- "@types/cors": "^2.8.17",
22
- "typescript": "^5.3.2",
23
- "ts-node": "^10.9.1"
19
+ "@types/express": "^5.0.5",
20
+ "@types/node": "^24.10.1",
21
+ "@types/cors": "^2.8.19",
22
+ "typescript": "^5.9.3",
23
+ "ts-node": "^10.9.2"
24
24
  },
25
25
  "keywords": [],
26
26
  "author": "",
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "target": "ES2020",
4
- "module": "ESNext",
5
- "lib": ["ES2020"],
3
+ "target": "esnext",
4
+ "module": "nodenext",
5
+ "lib": ["ESNext"],
6
6
  "outDir": "./dist",
7
7
  "rootDir": "./src",
8
8
  "strict": true,
9
9
  "esModuleInterop": true,
10
10
  "skipLibCheck": true,
11
11
  "forceConsistentCasingInFileNames": true,
12
- "moduleResolution": "node",
13
- "resolveJsonModule": true,
12
+ "moduleResolution": "nodenext",
13
+ "resolveJsonModule": true,
14
14
  "declaration": true
15
15
  },
16
16
  "include": ["src/**/*"],