-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.57 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.57 KB
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
{
"name": "mapillary-js-doc",
"version": "4.1.1",
"description": "documentation for mapillary-js",
"license": "MIT",
"private": true,
"scripts": {
"build": "docusaurus build",
"build-api": "typedoc --entryDocument index.md --out api",
"build-docs": "yarn build --config docusaurus.docs.config.js",
"build-mjs": "yarn --cwd .. build",
"ci": "yarn lint && yarn prettier-diff",
"clear": "yarn clear-api && docusaurus clear",
"clear-all": "yarn clear-mjs && yarn clear",
"clear-api": "rm -rf api",
"clear-mjs": "rm -rf src/mapillary-js",
"copy-mjs": "./mapillary-js.sh",
"deploy": "yarn clear-all && yarn install-mjs && docusaurus deploy",
"docusaurus": "docusaurus",
"install-mjs": "yarn build-mjs && yarn copy-mjs",
"lint": "eslint --cache \"**/*.js\" && stylelint \"**/*.css\"",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,jsx,ts,tsx,md,mdx}\"",
"prettier-diff": "prettier --config .prettierrc --list-different \"**/*.{js,jsx,ts,tsx,md,mdx}\"",
"rebuild": "yarn clear-all && yarn install-mjs && yarn build",
"serve": "docusaurus serve",
"start": "docusaurus start --config docusaurus.docs.config.js",
"start-api": "docusaurus start",
"swizzle": "docusaurus swizzle",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@docusaurus/core": "^2.0.0-beta.6",
"@docusaurus/preset-classic": "^2.0.0-beta.6",
"@docusaurus/theme-live-codeblock": "^2.0.0-beta.6",
"@mdx-js/react": "^1.6.21",
"@svgr/webpack": "^5.5.0",
"clsx": "^1.1.1",
"file-loader": "^6.2.0",
"mapbox-gl": "^2.4.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"three": "^0.132.2",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.4",
"docusaurus-plugin-typedoc": "^0.15.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.2",
"stylelint": "^15.10.1",
"stylelint-copyright": "^2.0.0-alpha.69",
"typedoc": "^0.21.9",
"typedoc-plugin-markdown": "^3.10.4"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}