-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.39 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
{
"name": "@spear-ai/monorepo",
"version": "1.0.0",
"description": "Spear API",
"author": {
"name": "Spear AI",
"email": "org@spear.ai",
"url": "https://spear.ai"
},
"type": "module",
"dependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.3",
"@commitlint/cli": "19.3.0",
"@commitlint/types": "19.0.3",
"@delucis/if-env": "1.1.2",
"@spear-ai/commitlint-config": "3.2.0",
"@spear-ai/eslint-config": "20.0.0",
"@spear-ai/npm-package-json-lint-config": "3.1.1",
"@spear-ai/prettier-config": "2.2.0",
"@spear-ai/tsconfig": "4.0.0",
"commitlint": "19.3.0",
"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.3.1",
"tailwindcss": "3.4.3",
"turbo": "1.13.3",
"typescript": "5.4.5"
},
"license": "UNLICENSED",
"packageManager": "yarn@4.2.2",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/spear-ai/api.git"
},
"resolutions": {
"ruru@npm:^2.0.0-beta.12": "patch:ruru@npm%3A2.0.0-beta.12#~/.yarn/patches/ruru-npm-2.0.0-beta.12-299bc077af.patch"
},
"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",
"npmpkgjsonlint:check": "npmPkgJsonLint .",
"postinstall": "if-env VERCEL='1' || (husky install && poetry install --no-root && cp .venv/lib/python3.11/site-packages/spear_ai_sqlfluff_config/.sqlfluff .sqlfluff)",
"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",
"sqlfluff:check": "poetry run sqlfluff lint packages/example-postgraphile-api/src/**/*.sql",
"sqlfluff:fix": "poetry run sqlfluff fix packages/example-postgraphile-api/src/**/*.sql --force",
"typescript:check": "tsc --noEmit"
},
"workspaces": [
"packages/*"
]
}