-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 5.5 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 5.5 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@cognite/reveal-documentation",
"version": "1.0.0",
"private": true,
"author": "Maksim Nesterenko <maksim.nesterenko@cognite.com>",
"contributors": [
"Lars Moastuen <lars.moastuen@cognite.com>",
"Joachim Bjørne <joachim.bjorne@cognite.com>",
"Christopher Tannum <christopher.tannum@cognite.com>",
"Maksim Nesterenko <maksim.nesterenko@cognite.com>"
],
"scripts": {
"start": "yarn run apiref && cross-env HTTPS=true docusaurus start --port=9000",
"build": "yarn run apiref && docusaurus build",
"build:fast": "yarn run apiref && docusaurus build --no-minify",
"swizzle": "docusaurus swizzle",
"apiref": "yarn run apiref:generate && yarn run apiref:concat",
"apiref:generate": "typedoc --listInvalidSymbolLinks",
"apiref:concat": "concat-md ./generated --startTitleLevelAt 1 --decrease-title-levels --dir-name-as-title > \"./docs/API Reference.md\"",
"replace-1.x:clean-versioned": "rimraf versioned_sidebars/version-1.x-sidebars.json versioned_docs/version-1.x versions.json",
"replace-1.x:copy-docs": "yarn apiref && yarn docusaurus docs:version 1.x && git checkout HEAD -- versions.json",
"replace-1.x:update-sdk": "yarn replace \"\\'@cognite/sdk\\'\" \"''@cognite/sdk-1.x''\" versioned_docs/version-1.x/ --include '*.ts*' -r",
"replace-1.x:update-reveal": "yarn replace \"\\'@cognite/reveal\\'\" \"''@cognite/reveal-1.x''\" versioned_docs/version-1.x/ --include '*.ts*' -r",
"replace-1.x:update-runnable": "yarn replace '^```(js[x]?) runnable$' '```$1 runnable-1x' versioned_docs/version-1.x/ --include '*.mdx' -r",
"replace-1.x": "yarn replace-1.x:clean-versioned && yarn replace-1.x:copy-docs && yarn replace-1.x:update-sdk && yarn replace-1.x:update-reveal && yarn replace-1.x:update-runnable",
"replace-2.x:clean-versioned": "rimraf versioned_sidebars/version-2.x-sidebars.json versioned_docs/version-2.x versions.json",
"replace-2.x:copy-docs": "yarn apiref && yarn docusaurus docs:version 2.x && git checkout HEAD -- versions.json",
"replace-2.x:update-site-imports": "yarn replace \"'@site/docs/\" \"'@site/versioned_docs/version-2.x/\" versioned_docs/version-2.x/ --include '*.ts*,*.mdx' -r",
"replace-2.x:update-sdk": "yarn replace \"\\'@cognite/sdk\\'\" \"''@cognite/sdk-2.x''\" versioned_docs/version-2.x/ --include '*.ts*' -r",
"replace-2.x:update-reveal": "yarn replace \"\\'@cognite/reveal\\'\" \"''@cognite/reveal-2.x''\" versioned_docs/version-2.x/ --include '*.ts*' -r",
"replace-2.x:update-runnable": "yarn replace '^```(js[x]?) runnable$' '```$1 runnable-2x' versioned_docs/version-2.x/ --include '*.mdx' -r",
"replace-2.x": "yarn replace-2.x:clean-versioned && yarn replace-2.x:copy-docs && yarn replace-2.x:update-sdk && yarn replace-2.x:update-reveal && yarn replace-2.x:update-runnable && yarn replace-2.x:update-site-imports",
"replace-3.x:clean-versioned": "rimraf versioned_sidebars/version-3.x-sidebars.json versioned_docs/version-3.x versions.json",
"replace-3.x:copy-docs": "yarn apiref && yarn docusaurus docs:version 3.x && git checkout HEAD -- versions.json",
"replace-3.x:update-site-imports": "yarn replace \"'@site/docs/\" \"'@site/versioned_docs/version-3.x/\" versioned_docs/version-3.x/ --include '*.ts*,*.mdx' -r",
"replace-3.x:update-sdk": "yarn replace \"\\'@cognite/sdk\\'\" \"''@cognite/sdk-3.x''\" versioned_docs/version-3.x/ --include '*.ts*' -r",
"replace-3.x:update-reveal": "yarn replace \"\\'@cognite/reveal\\'\" \"''@cognite/reveal-3.x''\" versioned_docs/version-3.x/ --include '*.ts*' -r",
"replace-3.x:update-runnable": "yarn replace '^```(js[x]?) runnable$' '```$1 runnable-3x' versioned_docs/version-3.x/ --include '*.mdx' -r",
"replace-3.x": "yarn replace-3.x:clean-versioned && yarn replace-3.x:copy-docs && yarn replace-3.x:update-sdk && yarn replace-3.x:update-reveal && yarn replace-3.x:update-runnable && yarn replace-3.x:update-site-imports",
"replace-latest-by-next": "yarn replace-3.x"
},
"dependencies": {
"@cognite/reveal": "link:../viewer/dist",
"@cognite/reveal-1.x": "npm:@cognite/reveal@1.x.x",
"@cognite/reveal-2.x": "npm:@cognite/reveal@2.x.x",
"@cognite/reveal-3.x": "npm:@cognite/reveal@3.0.0-beta.1",
"@cognite/sdk": "link:../viewer/node_modules/@cognite/sdk",
"@cognite/sdk-1.x": "npm:@cognite/sdk@^3.4.0",
"@cognite/sdk-2.x": "npm:@cognite/sdk@^5.1.3",
"@cognite/sdk-3.x": "npm:@cognite/sdk@^7.1.0",
"@docusaurus/core": "2.0.0-alpha.64",
"@docusaurus/module-type-aliases": "2.0.0-alpha.64",
"@docusaurus/preset-classic": "2.0.0-alpha.64",
"@docusaurus/theme-live-codeblock": "2.0.0-alpha.64",
"@google/model-viewer": "1.7.2",
"clsx": "1.1.1",
"cross-env": "7.0.3",
"geo-three": "0.0.16",
"npm-to-yarn": "1.0.1",
"query-string": "7.1.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-live": "2.4.1",
"styled-components": "5.3.3",
"three": "0.137.5"
},
"devDependencies": {
"@types/react": "16.14.23",
"@types/styled-components": "5.1.23",
"@types/three": "0.137.0",
"concat-md": "0.3.5",
"docusaurus2-dotenv": "1.4.0",
"jsdoc-babel": "0.5.0",
"replace": "1.2.1",
"rimraf": "3.0.2",
"typedoc": "0.20.37",
"typedoc-plugin-markdown": "3.9.0",
"typedoc-plugin-no-inherit": "1.3.0",
"typescript": "4.2.4"
},
"browserslist": {
"production": [
">1%",
"not dead",
"not ie 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}