-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.26 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "tryappstack",
"version": "2.0.0",
"description": "Enterprise-grade CLI to bootstrap production-ready Node.js applications with TypeScript/JavaScript, MongoDB, Redis, Docker, CI/CD, and world-class patterns",
"license": "MIT",
"author": "Dushyant Khoda",
"homepage": "https://tryappstack.vercel.app",
"repository": {
"type": "git",
"url": "git+https://github.com/Dushyant-Khoda/tryappstack-cli.git"
},
"bugs": {
"url": "https://github.com/Dushyant-Khoda/tryappstack-cli/issues"
},
"main": "lib/commands/init.js",
"bin": {
"tryappstack": "bin/cli.js",
"tas": "bin/cli.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin/",
"lib/",
"templates/"
],
"scripts": {
"test": "node bin/cli.js",
"lint": "eslint bin lib --ignore-pattern 'templates/*'",
"format": "prettier --write \"bin/**/*.js\" \"lib/**/*.js\"",
"prepare": "husky || true"
},
"keywords": [
"nodejs cli",
"typescript boilerplate",
"mongodb template",
"express boilerplate",
"api starter template",
"backend boilerplate",
"project scaffolding",
"boilerplate generator",
"node starter template",
"saas starter",
"docker template",
"redis caching",
"microservices",
"rest api",
"enterprise nodejs",
"production ready",
"ci cd pipeline",
"kubernetes ready",
"developer tools",
"project generator",
"node cli tool",
"app boilerplate",
"typescript starter",
"mongodb express",
"pino logging",
"swagger api",
"jwt authentication"
],
"dependencies": {
"chalk": "4.1.2",
"commander": "^14.0.3",
"figlet": "^1.8.0",
"fs-extra": "^11.2.0",
"inquirer": "^8.2.6",
"ora": "5.4.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"prettier": "^3.2.5",
"semantic-release": "^25.0.3"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}