forked from garden-io/garden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.72 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
94
95
96
97
98
99
100
101
{
"name": "garden",
"description": "A full-featured development framework for containers and serverless",
"repository": {
"type": "git",
"url": "git+https://github.com/garden-io/garden.git"
},
"version": "0.12.53",
"author": "Garden Technologies, Inc. <[email protected]>",
"license": "MPL-2.0",
"homepage": "https://github.com/garden-io/garden",
"engines": {
"node": ">=18",
"npm": ">=8"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@google-cloud/kms": "^1.6.3",
"@types/bluebird": "^3.5.32",
"@types/fs-extra": "^9.0.1",
"@types/google-cloud__kms": "^1.5.1",
"@types/lodash": "^4.14.153",
"@types/node": "^18",
"@types/prettier": "^2",
"@types/semver": "^7.2.0",
"@types/treeify": "^1.0.0",
"@yarnpkg/pnpify": "^2.1.0",
"chalk": "^4.1.0",
"csv": "^6.0.5",
"deline": "^1.0.4",
"dependency-graph": "^0.9.0",
"execa": "^4.0.2",
"fs-extra": "^9.0.0",
"gulp": "^4.0.2",
"gulp-license-check": "^1.2.1",
"handlebars": "^4.7.6",
"husky": "^4.2.5",
"lodash": "^4.17.15",
"markdown-link-check": "^3.9.3",
"minimatch": "^3.0.5",
"minimist": "^1.2.6",
"node-jsonl": "^0.1.0",
"npm-license-crawler": "^0.2.1",
"prettier": "^2.1.1",
"replace-in-file": "^6.0.0",
"semver": "^7.3.2",
"shx": "^0.3.2",
"strip-ansi": "^6.0.0",
"treeify": "^1.1.0",
"ts-node": "^10.8.2",
"tslint": "^6.1.3",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-no-focused-test": "^0.5.0",
"tslint-no-unused": "^0.2.0-alpha.1",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.7.4",
"typescript-formatter": "^7.2.2",
"wrap-ansi": "^7.0.0"
},
"scripts": {
"add-licenses": "copyright-header --license-file support/license-header.txt --syntax support/license-syntax.yaml --add-path dashboard/src:core/src:core/test --output-dir .",
"bootstrap": "yarn",
"build": "yarn run clean && yarn run bootstrap && ./scripts/run-script.ts build",
"build-containers": "yarn run dist && ./scripts/build-containers.sh",
"check-all": "yarn run check-package-lock && yarn run check-licenses && yarn run lint && yarn run check-docs",
"check-docs": "./scripts/check-docs.sh",
"check-licenses": "gulp check-licenses",
"check-package-licenses": "./scripts/check-package-licenses.ts",
"check-package-lock": "git diff --quiet HEAD -- yarn.lock || (echo 'yarn.lock is dirty!' && exit 1)",
"check-pre-push": "yarn run check-package-lock && yarn run check-licenses && yarn run lint",
"clean": "./scripts/run-script.ts clean && find . -name \".garden\" -type d -prune -exec rm -rf '{}' '+'",
"clean-node-modules": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' '+'",
"dev": "./scripts/run-script.ts dev --parallel",
"dist": "node cli/build/src/build-pkg.js",
"e2e": "./bin/garden test e2e-tests",
"e2e-project": "cd e2e; yarn e2e-project",
"fix-format": "./scripts/run-script.ts fix-format --no-bail --parallel",
"generate-docs": "./scripts/run-script.ts generate-docs",
"integ": "./scripts/run-script.ts integ",
"lint": "./scripts/run-script.ts lint --no-bail --parallel && gulp check-licenses",
"push-containers": "yarn run dist && ./script/push-containers.sh",
"test:plugins": "./scripts/run-script.ts test --no-bail --scope @garden-io/garden-*",
"test:framework:unit": "./scripts/run-script.ts test --no-bail --ignore @garden-io/garden-*"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn run check-pre-push"
}
},
"workspaces": [
"cli",
"core",
"dashboard",
"e2e",
"plugins/*",
"sdk"
]
}