create-ts-express-app 1.3.3 → 1.3.4

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.
Files changed (1) hide show
  1. package/package.json +29 -12
package/package.json CHANGED
@@ -1,34 +1,51 @@
1
1
  {
2
2
  "name": "create-ts-express-app",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
+ "main": "index.js",
4
5
  "bin": {
5
6
  "create-ts-express-app": "bin/cli.js"
6
7
  },
7
- "description": "Instant backend starter template with TypeScript & Express.js",
8
+ "scripts": {
9
+ "build": "tsc",
10
+ "start": "node dist/index.js",
11
+ "dev": "nodemon --exec ts-node src/index.ts",
12
+ "dev:watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts"
13
+ },
8
14
  "keywords": [
9
15
  "typescript",
10
16
  "express",
17
+ "boilerplate",
11
18
  "create-app",
12
19
  "starter",
13
20
  "scaffold",
14
21
  "npx",
15
- "cli",
16
- "backend",
17
- "boilerplate"
22
+ "cli"
18
23
  ],
19
24
  "author": "Harsh Pal",
20
25
  "license": "MIT",
26
+ "description": "A simple backend starter for ts",
27
+ "devDependencies": {
28
+ "@types/node": "^22.14.1",
29
+ "@typescript-eslint/eslint-plugin": "^8.30.1",
30
+ "@typescript-eslint/parser": "^8.30.1",
31
+ "eslint": "^9.24.0",
32
+ "eslint-config-prettier": "^10.1.2",
33
+ "eslint-plugin-prettier": "^5.2.6",
34
+ "nodemon": "^3.1.9",
35
+ "prettier": "^3.5.3",
36
+ "ts-node": "^10.9.2",
37
+ "typescript": "^5.8.3"
38
+ },
21
39
  "dependencies": {
22
- "chalk": "^4.1.2",
23
- "fs-extra": "^10.1.0",
40
+ "@types/express": "^5.0.1",
41
+ "dotenv": "^16.5.0",
42
+ "express": "^5.1.0",
43
+ "fs": "^0.0.1-security",
24
44
  "ncp": "^2.0.0",
25
45
  "path": "^0.12.7",
26
- "prompts": "^2.4.2"
46
+ "chalk": "^4.1.2",
47
+ "fs-extra": "^10.1.0"
27
48
  },
28
- "files": [
29
- "bin",
30
- "template"
31
- ],
32
49
  "repository": {
33
50
  "type": "git",
34
51
  "url": "https://github.com/harsh-dev0/ts-express.git"