-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 963 Bytes
/
package.json
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
{
"name": "@yesari/nodestruct",
"version": "1.0.4",
"description": "A CLI tool to create project structure based on selected architecture.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Yesarib/nodejs-project-structer.git"
},
"scripts": {
"start": "npx tsc && npm link",
"build": "tsc && npm run copy-templates && npm link",
"copy-templates": "xcopy templates dist\\templates /E /I /Y",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"node-structer": "dist/bin/cli.js"
},
"author": "Barış Yesari",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.7.4",
"typescript": "^5.6.2"
},
"dependencies": {
"commander": "^12.1.0",
"inquirer": "^11.0.2"
},
"keywords": [
"CLI",
"project",
"structure",
"architecture",
"nodejs",
"base",
"hexagonal",
"DDD",
"microservice",
"eventdriven"
]
}