forked from jupyter-book/myst-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.82 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
{
"name": "myst-theme",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"themes/*",
"styles",
"docs"
],
"scripts": {
"postinstall": "patch-package --patch-dir patches",
"compile": "turbo run compile",
"build": "turbo run build",
"dev": "turbo run dev --parallel --filter='./packages/*'",
"theme:book": "turbo run dev --parallel --filter='./themes/book'",
"theme:article": "turbo run dev --parallel --filter='./themes/article'",
"test": "turbo run test",
"storybook": "cd docs && npm run storybook",
"build-storybook": "npm run build && cd docs && storybook build",
"clean": "turbo run clean --parallel && find . -name '.turbo' -type d -prune -exec rm -rf '{}' +",
"lint": "turbo run lint",
"lint:format": "turbo run lint:format",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepublishOnly": "npm run build",
"changeset": "changeset",
"version": "changeset version && npm install",
"publish": "npm run clean && npm run build -- --force && changeset publish && git push --follow-tags",
"publish:ci": "npm run clean && npm run build && changeset publish && git push --follow-tags"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@remix-run/node": "~1.17.0",
"@remix-run/react": "~1.17.0",
"@tailwindcss/typography": "^0.5.9",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"concurrently": "^8.2.0",
"eslint-config-curvenote": "^0.0.4",
"npm-run-all": "^4.1.5",
"patch-package": "^6.5.1",
"prettier": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.2",
"turbo": "latest",
"typescript": "^5.1.3",
"vitest": "^0.32.0"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}