-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 4.06 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 4.06 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@thoughtspot/developer-docs",
"description": "ThoughtSpot Embed SDK Docs",
"scripts": {
"start": "gatsby develop",
"build:gatsby": "npm run generate-typedoc && npm run clean:gatsby && gatsby build --prefix-paths",
"build:gatsby:noprefix": "npm run generate-typedoc && npm run clean:gatsby && gatsby build",
"serve:gatsby": "gatsby serve --prefix-paths",
"clean:gatsby": "gatsby clean",
"build-and-publish": "npm run build:gatsby && npm run publish",
"docs-cmd": "node scripts/gatsby-commands.js",
"test": "jest -c jest.config.docs.js",
"publish-dev": "npm publish --tag dev",
"publish-prod": "npm publish --tag latest",
"generate-typedoc": "tsx scripts/Converter/index.ts",
"generate-typedoc:debug": "node --inspect-brk -r ts-node/register scripts/Converter/index.ts"
},
"peerDependencies": {
"react": "> 16.8.0",
"react-dom": "> 16.8.0"
},
"dependencies": {
"@vercel/analytics": "^1.0.2",
"algoliasearch": "^4.10.5",
"classnames": "^2.3.1",
"eventemitter3": "^4.0.7",
"gatsby-plugin-vercel": "^1.0.3",
"gatsby-source-git": "^1.1.0",
"html-react-parser": "^1.4.12",
"lodash": "^4.17.21",
"mixpanel-browser": "^2.45.0",
"react-helmet": "^6.1.0",
"use-deep-compare-effect": "^1.8.1"
},
"devDependencies": {
"@react-icons/all-files": "^4.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@types/mixpanel-browser": "^2.35.6",
"@types/react": "^18.2.14",
"@types/react-helmet": "^6.1.6",
"@types/react-modal": "^3.16.0",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"asciidoctor": "^2.2.1",
"babel-jest": "^26.6.3",
"command-line-args": "^5.1.1",
"coveralls": "^3.1.0",
"dts-bundle": "0.7.3",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react-hooks": "^4.2.0",
"fs-extra": "^10.0.0",
"gatsby": "^4.11.0",
"gatsby-page-utils": "3.14.0",
"gatsby-plugin-algolia": "^1.0.3",
"gatsby-plugin-catch-links": "^4.11.0",
"gatsby-plugin-env-variables": "^2.3.0",
"gatsby-plugin-intl": "^5.10.0",
"gatsby-plugin-manifest": "^4.11.0",
"gatsby-plugin-output": "^0.1.3",
"gatsby-plugin-sass": "^5.11.0",
"gatsby-plugin-sitemap": "^5.11.0",
"gatsby-source-filesystem": "^4.11.0",
"gatsby-transformer-asciidoc": "^3.11.0",
"gatsby-transformer-rehype": "^2.0.1",
"highlight.js": "^10.6.0",
"html-to-text": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jsdom": "^17.0.0",
"sass": "^1.80.6",
"prettier": "2.1.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-modal": "^3.16.1",
"react-resizable": "^3.0.0",
"react-resize-detector": "^9.x.0",
"react-test-renderer": "^18.0.x",
"react-use-flexsearch": "^0.1.1",
"ts-jest": "^26.5.5",
"ts-node": "^10.9.1",
"tsx": "^4.7.1",
"typedoc": "^0.24.6",
"typescript": "^4.4.x",
"url-search-params-polyfill": "^8.1.0",
"util": "^0.12.4"
},
"author": "ThoughtSpot",
"email": "support@thoughtspot.com",
"license": "ThoughtSpot Development Tools End User License Agreement",
"repository": {
"type": "git",
"url": "git+https://github.com/thoughtspot/developer-docs.git"
},
"bugs": {
"url": "https://github.com/thoughtspot/developer-docs/issues"
},
"homepage": "https://github.com/thoughtspot/developer-docs#readme",
"globals": {
"window": {}
}
}