-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
93 lines (93 loc) · 2.46 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
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
91
92
93
{
"name": "@manekinekko/hexa",
"version": "1.3.4",
"description": "Hexa: The ultimate companion for the Azure CLI. Setup and deploy in seconds.",
"main": "./dist/bin.js",
"types": "./dist/index.d.ts",
"bin": {
"hexa": "./dist/bin.js"
},
"homepage": "https://github.com/manekinekko/hexa#readme",
"private": false,
"scripts": {
"watch": "npm run build -- --watch",
"prestart": "npm run build",
"start": "node ./dist/bin.js ws",
"build": "rimraf dist/ && mkdir dist && npm run copy:templates && npm run copy:bin && tsc",
"copy:templates": "copyfiles --verbose --all \"src/templates/**/*\" dist/",
"copy:bin": "copyfiles --verbose --flat src/bin.js dist/",
"prepare": "npm run build",
"release": "release-it --no-git.requireUpstream",
"test": "jest"
},
"keywords": [
"azure",
"cloud",
"serverless",
"hosting",
"database",
"authentication",
"storage"
],
"author": {
"name": "Wassim Chegham",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/manekinekko/hexa/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/manekinekko/hexa.git"
},
"license": "MIT",
"dependencies": {
"@octokit/oauth-app": "^3.4.0",
"@types/shelljs": "^0.8.8",
"cfonts": "^2.4.5",
"chalk": "^2.4.2",
"clear": "^0.1.0",
"commander": "^3.0.1",
"configstore": "^5.0.0",
"copyfiles": "^2.4.1",
"debug": "^4.1.1",
"deepmerge": "^4.0.0",
"dotenv": "^8.1.0",
"inquirer": "^7.0.0",
"internal-ip": "^6.2.0",
"jmespath": "^0.15.0",
"ora": "^3.4.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"uuid": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^13.0.0",
"@commitlint/config-conventional": "^8.2.0",
"@release-it/conventional-changelog": "^2.0.1",
"@types/clear": "^0.1.0",
"@types/configstore": "^4.0.0",
"@types/debug": "^4.1.5",
"@types/dotenv": "^6.1.1",
"@types/inquirer": "^6.5.0",
"@types/jest": "^26.0.15",
"@types/jmespath": "^0.15.0",
"@types/mock-fs": "^4.13.0",
"@types/node": "^12.7.3",
"@types/ora": "^3.2.0",
"@types/ws": "^7.4.7",
"husky": "^3.0.7",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"mock-fs": "^4.13.0",
"nodemon": "^2.0.7",
"release-it": "^14.7.0",
"ts-jest": "^26.4.4",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}