-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
83 lines (83 loc) · 2.42 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
{
"name": "@hubspot/cli",
"version": "6.2.2-experimental.0",
"description": "The official CLI for developing on HubSpot",
"license": "Apache-2.0",
"repository": "https://github.com/HubSpot/hubspot-cli",
"dependencies": {
"@hubspot/local-dev-lib": "^2.0.1",
"@hubspot/serverless-dev-runtime": "7.0.0",
"@hubspot/theme-preview-dev-server": "0.0.9",
"@hubspot/ui-extensions-dev-server": "0.8.33",
"archiver": "^7.0.1",
"chalk": "^4.1.2",
"chokidar": "^3.0.1",
"cli-cursor": "^3.1.0",
"cli-progress": "^3.11.2",
"express": "^4.17.1",
"findup-sync": "^4.0.0",
"fs-extra": "^8.1.0",
"inquirer": "8.2.0",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"moment": "^2.29.1",
"open": "^7.0.3",
"p-queue": "^6.0.2",
"strip-ansi": "^5.2.0",
"table": "^6.6.0",
"tmp": "^0.2.1",
"update-notifier": "^5.1.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"axios": "^1.7.2",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"madge": "^8.0.0",
"mock-stdin": "^1.0.0",
"prettier": "^1.19.1",
"semver": "^7.6.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"scripts": {
"build": "bash ./scripts/build.sh",
"lint": "eslint . && prettier --list-different ./**/*.{js,json}",
"prettier:write": "prettier --write ./**/*.{js,json}",
"test": "jest",
"test-cli": "yarn --cwd 'acceptance-tests' test-ci",
"test-cli-debug": "yarn --cwd 'acceptance-tests' test-debug",
"test-cli-qa": "yarn --cwd 'acceptance-tests' test-qa",
"test-cli-latest": "yarn build-docker && docker container run -it --rm --name=hs-cli-container hs-cli-image yarn --cwd 'acceptance-tests' test-latest",
"build-docker": "docker image build --tag hs-cli-image . && docker image prune -f",
"circular-deps": "yarn madge --circular .",
"release": "bash ./scripts/release.sh",
"hs": "yarn build && node ./dist/bin/hs"
},
"lint-staged": {
"**/*.{js,ts,scss,css}": [
"prettier -l",
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">=18"
},
"bin": {
"hs": "./bin/hs",
"hscms": "./bin/hscms"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}