-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.9 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
{
"name": "nomad-devops",
"version": "0.0.1",
"description": "Full Ops and Devops platform targeted at digital nomads and startups. Utilizes AWS platform and CloudFormation to set up everything with IaaC",
"scripts": {
"docs-dev": "vuepress dev docs",
"docs-build": "vuepress build docs",
"deploy": "npm run ts bin/deploy",
"clean-dist": "rm -rf dist && mkdir dist",
"build": "node_modules/.bin/tsc",
"lint": "node_modules/.bin/eslint --ext .ts --fix bin/ lib/ templates/",
"preversion": "npm run lint && git add -A",
"postversion": "git push && git push --tags && npm publish",
"node": "node",
"ts": "npm run node -- -r ts-node/register",
"debug": "npm run ts --inspect-brk"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.51",
"@types/body-parser": "^1.17.1",
"@types/compression": "^1.0.1",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/helmet": "0.0.45",
"@types/morgan": "^1.7.37",
"@types/node": "^12.12.7",
"@types/uuid": "^7.0.3",
"@types/webpack": "^4.41.13",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"@vuepress/plugin-active-header-links": "^1.4.1",
"@vuepress/plugin-back-to-top": "^1.4.1",
"@vuepress/plugin-google-analytics": "^1.4.1",
"@vuepress/plugin-last-updated": "^1.4.1",
"@vuepress/plugin-medium-zoom": "^1.4.1",
"@vuepress/plugin-nprogress": "^1.4.1",
"@vuepress/plugin-register-components": "^1.4.1",
"debug": "^4.1.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.17.1",
"ts-loader": "^6.2.2",
"ts-node": "^8.4.1",
"typescript": "^3.9.2",
"vue-toasted": "^1.1.28",
"vuepress": "^1.4.1",
"vuepress-plugin-clean-urls": "^1.1.1",
"vuepress-plugin-container": "^2.1.3",
"vuepress-plugin-redirect": "^1.2.3",
"vuepress-plugin-smooth-scroll": "0.0.9",
"vuepress-plugin-typescript": "^0.2.0",
"vuepress-types": "^0.9.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@octokit/rest": "^16.34.1",
"aws-lambda": "^0.1.2",
"aws-sdk": "^2.568.0",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cloudform": "^4.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"json2yaml": "^1.1.0",
"log-update": "^4.0.0",
"mime-types": "^2.1.24",
"morgan": "^1.9.1",
"rc-parser": "^1.0.2",
"uuid": "^8.0.0",
"yaml": "^1.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthewkeil/nomad-devops.git"
},
"homepage": "www.matthewkeil.com",
"author": "Matthew Elias Keil",
"license": "MIT",
"bugs": {
"url": "https://github.com/matthewkeil/nomad-devops/issues"
},
"keywords": [],
"main": "dist/index.js",
"types": "dist/index.d.ts"
}