-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 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
{
"name": "initial-server-setup",
"version": "1.2.0",
"description": "Tool to setup clean ubuntu 22.04 initially with docker and nginx under the hood via ansible playbooks",
"scripts": {
"watch": "./node_modules/.bin/tsc -w",
"build": "rm -rf ./dist && ./node_modules/.bin/tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:gustarus/initial-server-setup.git"
},
"bugs": {
"url": "https://github.com/gustarus/initial-server-setup/issues"
},
"main": "./dist/index.js",
"homepage": "https://github.com/hustarus/initial-server-setup",
"bin": {
"initial-server-setup": "./dist/index.js"
},
"author": "Pavel Kondratenko <iam@kondratenko.me>",
"license": "MIT",
"devDependencies": {
"@types/commander": "2.12.2",
"@types/fs-extra": "8.0.1",
"@types/inquirer": "6.5.0",
"@types/node": "13.7.1",
"@types/yargs": "15.0.3",
"typescript": "3.7.5"
},
"dependencies": {
"colors": "1.4.0",
"commander": "4.1.1",
"fs": "0.0.1-security",
"fs-extra": "8.1.0",
"inquirer": "7.0.4",
"moment": "2.24.0"
}
}