-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
27 lines (27 loc) · 1005 Bytes
/
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
{
"name": "thread",
"private": true,
"scripts": {
"dev": "npm run dev --workspace=docs",
"build": "npm run build --workspace=docs",
"start": "npm start --workspace=docs",
"lint:docs": "npm run lint --workspace=docs",
"lint:core": "python -m poetry run ruff format --check",
"lint:proj": "prettier --check --cache .",
"lint": "npm run lint:docs && npm run lint:core && npm run lint:proj",
"lint:docs:fix": "npm run lint:fix --workspace=docs",
"lint:core:fix": "python -m poetry run ruff format",
"lint:proj:fix": "prettier --write --cache .",
"lint:fix": "npm run lint:docs:fix && npm run lint:core:fix && npm run lint:proj:fix",
"test:docs": "npm run test --workspace=docs",
"test:core": "python -m poetry run pytest -sv",
"test": "npm run test:docs && npm run test:core",
"install-all": "npm i && python -m pip install poetry && poetry install"
},
"workspaces": [
"docs"
],
"devDependencies": {
"prettier": "^3.3.3"
}
}