-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 KB
/
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
42
43
44
45
46
47
48
49
50
51
{
"name": "@simplyhexagonal/project-structure",
"version": "1.0.0",
"description": "Simple Typescript functionality to initialize a project's folder structure from a sane json definition",
"main": "index.js",
"bin": {
"project-structure": "./bin/cli"
},
"scripts": {
"build": "./scripts/build",
"deploy": "./scripts/deploy",
"test": "./scripts/test"
},
"keywords": [
"directory",
"folder",
"structure",
"mkdir"
],
"author": "Jean M. Lescure",
"license": "Apache-2.0",
"files": [
"bin",
"src",
"dist"
],
"devDependencies": {
"@types/fs-extra": "9.0.13",
"@types/jest": "28.1.3",
"@types/node": "18.0.0",
"@types/promise-ftp": "1.3.4",
"esbuild": "0.14.47",
"jest": "28.1.1",
"nodemon": "2.0.18",
"ts-jest": "28.0.5",
"ts-node": "10.8.1",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@simplyhexagonal/elean": "1.0.0",
"@simplyhexagonal/exec": "2.0.2",
"@simplyhexagonal/logger": "2.1.1",
"@simplyhexagonal/mono-context": "1.1.2",
"dotenv": "16.0.1",
"fs-extra": "10.1.0",
"ora": "6.1.1",
"promise-ftp": "1.3.5",
"yargs": "17.5.1"
}
}