-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 2.03 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
{
"name": "secretnote-monorepo",
"private": true,
"license": "Apache-2.0",
"author": "Tony Wu <[email protected]>",
"repository": "https://github.com/secretflow/secretnote",
"description": "Notebook suite for SecretFlow",
"scripts": {
"bootstrap": "pnpm install --frozen-lockfile && rye sync --no-lock",
"postinstall": "is-ci || husky install",
"clean": "node scripts/clean.js",
"build": "nx run-many -t build:component -t build:site && nx run-many -t build:py",
"format:black": "python -m black pyprojects",
"format:prettier": "prettier --write --ignore-unknown packages/**/*.{ts,tsx}",
"ci:setup": ":",
"ci:check:javascript": "nx run-many -t format:prettier -t lint:eslint -t typecheck:tsc",
"ci:check:python": "nx run-many -t format:black -t test:pytest -t typecheck:pyright",
"ci:build": "nx run-many -t build:component -t build:site && nx run-many -t build:py:ci",
"docker:build": "docker buildx build --build-arg SECRETFLOW_VERSION=1.10.0b0 --platform linux/arm64 -t secretflow/secretnote:1.10.0b0 -f ./docker/secretflow-secretnote/Dockerfile .",
"docker:up": "docker-compose -f ./docker/secretnote-sf-sim/docker-compose.yml up"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@types/node": "^18.16.19",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-mdx": "^2.2.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"lint-staged": "^13.3.0",
"nx": "^17.2.0",
"postcss": "^8.4.31",
"postcss-less": "^6.0.0",
"prettier": "^3.0.3",
"pyright": "^1.1.332",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18.18.0"
},
"packageManager": "[email protected]",
"pnpm": {}
}