-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.88 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.88 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
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
{
"name": "@hubspot/local-dev-lib",
"version": "5.4.0-beta.0",
"type": "module",
"description": "Provides library functionality for HubSpot local development tooling, including the HubSpot CLI",
"files": [
"**/*",
"!**/__tests__/**"
],
"repository": {
"type": "git",
"url": "https://github.com/HubSpot/hubspot-local-dev-lib"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"build": "tsx ./scripts/build.ts",
"circular-deps": "yarn madge --circular --extensions ts --exclude 'dist/.*' .",
"lint": "eslint --max-warnings=0 . && prettier . --check",
"local-dev": "yarn build && cd dist && yarn link && cd .. && tsc --watch --rootDir . --outdir dist",
"prettier:write": "prettier . --write",
"release": "tsx ./scripts/release.ts release",
"test": "NODE_NO_WARNINGS=1 vitest run",
"test:watch": "NODE_NO_WARNINGS=1 vitest"
},
"license": "Apache-2.0",
"devDependencies": {
"@hubspot/npm-scripts": "0.0.6",
"@types/content-disposition": "^0.5.5",
"@types/cors": "^2.8.15",
"@types/debounce": "^1.2.1",
"@types/express": "^4.17.18",
"@types/findup-sync": "^4.0.2",
"@types/fs-extra": "^11.0.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.14.8",
"@types/unixify": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.38.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^8.0.0",
"madge": "^8.0.0",
"open": "^8.4.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^2.1.9",
"yargs": "^17.7.2"
},
"exports": {
"./*": "./lib/*.js",
"./*/cms/*": "./lib/cms/*.js",
"./api/*": "./api/*.js",
"./errors/*": "./errors/*.js",
"./http": "./http/index.js",
"./http/*": "./http/*.js",
"./config/defaultAccountOverride": "./config/defaultAccountOverride.js",
"./config/migrate": "./config/migrate.js",
"./config/state": "./config/state.js",
"./config/hsSettings": "./config/hsSettings.js",
"./config": "./config/index.js",
"./constants/*": "./constants/*.js",
"./enums/*": "./enums/*.js",
"./models/*": "./models/*.js",
"./types/*": {
"types": "./types/*.d.ts",
"default": "./types/*.js"
}
},
"dependencies": {
"address": "2.0.2",
"axios": "1.12.0",
"chalk": "5.6.2",
"chokidar": "3.6.0",
"content-disposition": "0.5.4",
"cors": "2.8.5",
"debounce": "1.2.1",
"express": "4.21.2",
"extract-zip": "2.0.1",
"findup-sync": "5.0.0",
"form-data": "^4.0.4",
"fs-extra": "11.2.0",
"http-proxy-agent": "7.0.2",
"https-proxy-agent": "7.0.6",
"ignore": "^7.0.0",
"js-yaml": "4.1.1",
"moment": "2.30.1",
"p-queue": "^7.0.0",
"prettier": "^3.6.2",
"semver": "6.3.1",
"unixify": "1.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}