-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.45 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
{
"name": "@hubspot/local-dev-lib",
"version": "2.3.0",
"description": "Provides library functionality for HubSpot local development tooling, including the HubSpot CLI",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/HubSpot/hubspot-local-dev-lib"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"build": "ts-node ./scripts/build.ts",
"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": "ts-node ./scripts/release.ts release",
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules ./node_modules/.bin/jest"
},
"license": "Apache-2.0",
"devDependencies": {
"@inquirer/prompts": "^7.0.1",
"@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/jest": "^29.5.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.14.2",
"@types/unixify": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.35.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.0",
"jest": "^29.5.0",
"open": "^8.4.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"yargs": "^17.7.2"
},
"exports": {
"./*": "./lib/*.js",
"./api/*": "./api/*.js",
"./errors/*": "./errors/*.js",
"./http": "./http/index.js",
"./http/*": "./http/*.js",
"./config/getAccountIdentifier": "./config/getAccountIdentifier.js",
"./config": "./config/index.js",
"./constants/*": "./constants/*.js",
"./models/*": "./models/*.js",
"./types/*": "./types/*.d.ts"
},
"dependencies": {
"address": "^2.0.1",
"axios": "^1.3.5",
"chalk": "^2.4.2",
"chokidar": "^3.5.3",
"content-disposition": "^0.5.4",
"cors": "^2.8.5",
"debounce": "^1.2.0",
"express": "^4.18.2",
"extract-zip": "^2.0.1",
"findup-sync": "^5.0.0",
"fs-extra": "^11.1.0",
"ignore": "^5.1.4",
"js-yaml": "^4.1.0",
"moment": "^2.29.4",
"p-queue": "^6.0.2",
"prettier": "^3.3.0",
"semver": "^6.3.0",
"unixify": "^1.0.0"
},
"engines": {
"node": ">=16.20.0"
}
}