-
Notifications
You must be signed in to change notification settings - Fork 274
/
package.json
114 lines (114 loc) · 4.25 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
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "garden",
"description": "A full-featured development framework for containers and serverless",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/garden-io/garden.git"
},
"version": "0.13.43",
"author": "Garden Technologies, Inc. <info@garden.io>",
"license": "MPL-2.0",
"homepage": "https://github.com/garden-io/garden",
"engines": {
"node": ">=18",
"npm": ">=8"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.2.2",
"@inquirer/prompts": "^7.0.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-esm-shim": "^0.1.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-url": "^8.0.2",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20",
"@types/semver": "^7.5.8",
"@types/treeify": "^1.0.3",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.16.0",
"chalk": "^5.3.0",
"csv": "^6.3.9",
"csv-stringify": "^6.5.1",
"deline": "^1.0.4",
"dependency-graph": "^0.11.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-chai-expect": "^3.1.0",
"eslint-plugin-chai-friendly": "^0.7.4",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.6",
"husky": "^9.1.6",
"lodash-es": "^4.17.21",
"markdown-link-check": "^3.12.2",
"minimatch": "^10.0.1",
"minimist": "^1.2.6",
"node-jsonl": "^0.1.0",
"npm-license-crawler": "^0.2.1",
"prettier": "3.3.3",
"replace-in-file": "^7.1.0",
"@rollup/wasm-node": "^4.18.0",
"semver": "^7.6.3",
"shx": "^0.3.2",
"split2": "^4.1.0",
"strip-ansi": "^7.1.0",
"treeify": "^1.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"wrap-ansi": "^9.0.0",
"yargs": "^17.7.2"
},
"scripts": {
"add-licenses": "copyright-header --license-file support/license-header.txt --syntax support/license-syntax.yaml --add-path core/src:core/test --output-dir .",
"bootstrap": "npm install",
"build": "./scripts/run-script.ts build",
"clean-build": "npm run clean && npm run bootstrap && ./scripts/run-script.ts build",
"check-all": "npm run check-package-lock && npm run lint && npm run check-docs",
"check-docs": "./scripts/check-docs.sh",
"check-package-licenses": "./scripts/check-package-licenses.ts",
"check-package-lock": "git diff --quiet HEAD -- package-lock.json || (echo 'package-lock.json is dirty!' && exit 1)",
"check-pre-push": "npm run check-package-lock && npm 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",
"rollup": "node --max-old-space-size=4096 node_modules/@rollup/wasm-node/dist/bin/rollup --config",
"e2e": "./bin/garden test e2e-tests",
"e2e-project": "cd e2e; npm run 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",
"prettier": "prettier --check \"./**/*.ts\"",
"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-* --report report.tmp",
"check-types": "./scripts/run-script.ts check-types --parallel"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run check-pre-push"
}
},
"workspaces": [
"cli",
"core",
"e2e",
"sdk",
"plugins/*"
]
}