create-ts-express-app 1.3.1 → 1.3.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.
- package/package.json +13 -13
package/package.json
CHANGED
@@ -1,33 +1,33 @@
|
|
1
1
|
{
|
2
2
|
"name": "create-ts-express-app",
|
3
|
-
"version": "1.3.
|
4
|
-
"main": "index.js",
|
3
|
+
"version": "1.3.2",
|
5
4
|
"bin": {
|
6
5
|
"create-ts-express-app": "bin/cli.js"
|
7
6
|
},
|
8
|
-
"
|
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
|
-
},
|
7
|
+
"description": "Instant backend starter template with TypeScript & Express.js",
|
14
8
|
"keywords": [
|
15
9
|
"typescript",
|
16
10
|
"express",
|
17
|
-
"boilerplate",
|
18
11
|
"create-app",
|
19
12
|
"starter",
|
20
13
|
"scaffold",
|
21
14
|
"npx",
|
22
|
-
"cli"
|
15
|
+
"cli",
|
16
|
+
"backend",
|
17
|
+
"boilerplate"
|
23
18
|
],
|
24
19
|
"author": "Harsh Pal",
|
25
20
|
"license": "MIT",
|
26
|
-
"description": "A simple backend starter for ts",
|
27
21
|
"dependencies": {
|
28
|
-
"
|
29
|
-
"fs-extra": "^10.1.0"
|
22
|
+
"chalk": "^4.1.2",
|
23
|
+
"fs-extra": "^10.1.0",
|
24
|
+
"ncp": "^2.0.0",
|
25
|
+
"prompts": "^2.4.2"
|
30
26
|
},
|
27
|
+
"files": [
|
28
|
+
"bin",
|
29
|
+
"template"
|
30
|
+
],
|
31
31
|
"repository": {
|
32
32
|
"type": "git",
|
33
33
|
"url": "https://github.com/harsh-dev0/ts-express.git"
|