-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.59 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
{
"name": "gatsby-source",
"description": "Gatsbgy Plugin for querying hubspot blogs",
"private": true,
"workspaces": [
"packages/*"
],
"version": "1.0.3",
"author": "samcyn <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/prompt-cli": "^19.2.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"vitest": "^1.4.0"
},
"scripts": {
"develop:plugin": "yarn workspace gatsby-source-hubspot-node develop",
"develop:site": "yarn workspace site develop",
"develop": "npm-run-all -l -p 'develop:site' 'develop:plugin'",
"build:plugin": "yarn workspace gatsby-source-hubspot-node build",
"build:site": "yarn workspace site build",
"build": "npm-run-all -s 'build:plugin' 'build:site'",
"serve:site": "yarn workspace site serve",
"lint": "eslint . --ext .ts,.tsx,.js",
"lint:fix": "yarn lint --fix",
"clean:plugin": "yarn workspace gatsby-source-hubspot-node clean",
"clean:site": "yarn workspace site clean",
"clean": "npm-run-all -p 'clean:*'",
"husky": "husky",
"commit": "commit",
"test": "vitest",
"coverage": "vitest run --coverage",
"release:plugin": "yarn workspace gatsby-source-hubspot-node semantic-release"
},
"packageManager": "[email protected]"
}