-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
83 lines (83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "cortexjs.io",
"version": "1.0.0",
"description": "cortexjs.io website source",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cortex-js/cortexjs.io.git"
},
"keywords": [
"web components",
"scientific computing",
"math editor",
"data science",
"visualization",
"compute engine"
],
"main": "root/index.html",
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"xdeploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"update": "bash scripts/update.sh",
"stage": "bash scripts/stage.sh",
"deploy": "bash scripts/deploy.sh"
},
"dependencies": {
"@docusaurus/core": "^3.1.1",
"@docusaurus/preset-classic": "^3.1.1",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.0.0",
"mathlive": "^0.98.6",
"prism-react-renderer": "^2.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"remark-math": "^6.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.1.1",
"@docusaurus/tsconfig": "^3.1.1",
"@docusaurus/types": "^3.1.1",
"typedoc": "^0.25.8",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0"
},
"browserslist": {
"production": [
"defaults and supports es6-module"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"author": "Arno Gourdol <[email protected]>",
"contributors": [],
"bugs": "https://github.com/cortex-js/cortexjs.io/issues/",
"prettier": "@cortex-js/prettier-config",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
}