-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.33 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
{
"name": "@spear-ai/pg-signal-monorepo",
"version": "1.0.0",
"description": "PostgreSQL signal processing",
"author": {
"name": "Spear AI",
"email": "[email protected]",
"url": "https://spear.ai"
},
"type": "module",
"dependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@commitlint/cli": "19.2.1",
"@commitlint/types": "19.0.3",
"@spear-ai/commitlint-config": "3.1.1",
"@spear-ai/eslint-config": "18.0.0",
"@spear-ai/npm-package-json-lint-config": "3.1.1",
"@spear-ai/prettier-config": "2.1.1",
"commitlint": "19.2.1",
"eslint": "8.57.0",
"graphql": "16.8.1",
"husky": "9.0.11",
"npm-package-json-lint": "7.1.0",
"prettier": "3.2.5",
"react": "18.2.0",
"squawk-cli": "0.28.0",
"tailwindcss": "3.4.3",
"turbo": "1.13.0",
"typescript": "5.4.3"
},
"license": "UNLICENSED",
"packageManager": "[email protected]",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/spear-ai/pg_signal.git"
},
"scripts": {
"version": "changeset version && yarn workspaces foreach -A run sync-version",
"commitlint:check": "commitlint --from=HEAD^1",
"eslint:check": "eslint --max-warnings 0 .",
"eslint:fix": "yarn eslint:check --fix",
"generate": "poetry run python sql/generate.py",
"mypy:check": "poetry run mypy .",
"npmpkgjsonlint:check": "npmPkgJsonLint .",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"publish-packages": "yarn run publish-packages:npm && yarn run publish-packages:github && yarn run publish-packages:custom && yarn changeset tag",
"publish-packages:custom": "yarn workspaces foreach -A run publish-package",
"publish-packages:github": "npm_config_registry=https://npm.pkg.github.com changeset publish --no-git-tag",
"publish-packages:npm": "changeset publish --no-git-tag",
"ruff-format:check": "poetry run ruff format --check .",
"ruff-format:fix": "poetry run ruff format .",
"ruff-lint:check": "poetry run ruff check .",
"ruff-lint:fix": "poetry run ruff check --fix .",
"sqlfluff:check": "poetry run sqlfluff lint sql/**/*.sql",
"sqlfluff:fix": "poetry run sqlfluff fix sql/**/*.sql",
"squawk:check": "squawk --assume-in-transaction sql/**/*.sql"
},
"workspaces": [
"packages/*"
]
}