-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.74 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
{
"name": "docs",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "yarn translate:offline && docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"translate": "yarn write-translations && deepmark translate",
"translate:offline": "yarn write-translations && deepmark translate --mode offline",
"publish-docs": "cmd /C 'set GIT_USER=agviegas && yarn deploy'",
"prepare": "husky install",
"format": "prettier --write .",
"lint:mdx": "node ./scripts/lint-mdx.mjs",
"lint": "yarn lint:mdx"
},
"dependencies": {
"@docusaurus/core": "^2.1.0",
"@docusaurus/preset-classic": "^2.1.0",
"@docusaurus/theme-search-algolia": "^2.1.0",
"@mdx-js/react": "^1.6.21",
"@svgr/webpack": "^5.5.0",
"clsx": "^1.1.1",
"file-loader": "^6.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"three": "^0.133.0",
"url-loader": "^4.1.1",
"web-ifc-three": "^0.0.32"
},
"devDependencies": {
"axios": "^0.21.1",
"deepmark": "^0.1.3",
"glob": "^8.0.3",
"husky": "^8.0.0",
"picocolors": "^1.0.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"remark": "^14.0.2",
"remark-comment": "^1.0.0",
"remark-frontmatter": "^4.0.1",
"remark-mdx": "^2.1.1"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}