-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
66 lines (66 loc) · 2.04 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
65
66
{
"name": "thebe-monorepo",
"version": "0.8.2",
"description": "Thebe: turn static HTML pages into live documents",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"nuke": "npm run clean; npx npkill",
"clean": "turbo run clean",
"build": "turbo run build",
"build:core": "turbo run build --filter=thebe-core",
"build:thebe": "turbo run build --filter=thebe",
"build:dev": "turbo run build:dev",
"demo": "turbo run demo",
"docs": "turbo run docs",
"test": "turbo run test",
"test:core:watch": "turbo run test:watch --filter=thebe-core",
"test:e2e": "turbo run test:e2e",
"lint": "turbo run lint",
"lint:format": "turbo run lint:format",
"lint:format:fix": "turbo run lint:format:fix",
"watch:core": "turbo run dev --filter=thebe-core",
"watch:thebe": "turbo run dev --filter=thebe",
"start:simple": "turbo run start --filter=demo-simple",
"watch:simple": "turbo run watch --filter=demo-simple",
"start:core": "turbo run start --filter=demo-core",
"start:react": "turbo run start --filter=demo-react",
"start:docs-core": "turbo run start --filter=docs-core",
"changeset": "changeset",
"dev": "turbo run dev --parallel",
"version": "changeset version && npm install",
"publish": "npm run clean && npm run build -- --force && changeset publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/executablebooks/thebe.git"
},
"keywords": [
"jupyter",
"notebook",
"website"
],
"author": "Executable Books Project",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/executablebooks/thebe/issues"
},
"engines": {
"npm": ">= 6.0",
"yarn": ">= 1.22.0",
"node": ">= 12"
},
"homepage": "https://thebe.readthedocs.io/en/latest",
"devDependencies": {
"happy-dom": "^10.11.2",
"turbo": "^2.0.3",
"vitest": "^0.34.2"
},
"dependencies": {
"@changesets/cli": "^2.26.1",
"npm-run-all": "^4.1.5"
},
"packageManager": "[email protected]"
}