-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
78 lines (78 loc) · 2.54 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
{
"name": "livechat-public-docs",
"description": "LiveChat Docs",
"version": "2.0.0",
"author": "@livechat",
"engines": {
"node": "^14.20.0"
},
"dependencies": {
"@amplitude/analytics-browser": "^1.9.4",
"@docsearch/react": "^3.3.3",
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@livechat/accounts-sdk": "^2.0.6",
"@livechat/design-system": "^0.13.4",
"@mapbox/rehype-prism": "^0.7.0",
"@mdx-js/mdx": "^1.5.1",
"@mdx-js/react": "^1.6.22",
"axios": "^0.27.2",
"core-js": "^3.1.4",
"github-slugger": "^1.2.1",
"lodash": "^4.6.0",
"mobx": "^6.0.1",
"next": "^10.0.8",
"next-compose-plugins": "^2.2.1",
"next-mdx-enhanced": "^5.0.0",
"next-plugin-yaml": "^1.0.1",
"next-sitemap": "^4.2.3",
"normalize.css": "^8.0.1",
"prismjs": "^1.17.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.12.0",
"react-fullstory": "^1.4.0",
"react-gtm-module": "^2.0.11",
"react-innertext": "^1.1.5",
"react-material-icon-svg": "^3.14.0",
"react-pose": "^4.0.10",
"redoc": "^2.0.0-rc.44",
"redux": "^4.1.0",
"rehype-autolink-headings": "^5.1.0",
"rehype-slug": "^4.0.1",
"shelljs": "^0.8.3",
"styled-components": "^5.1.1",
"uuid": "^9.0.0",
"yargs": "^14.2.2"
},
"license": "MIT",
"scripts": {
"format": "prettier --write \"src/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "node ./scripts/version",
"generate-redoc": "node ./scripts/redoc",
"generate-versions": "node ./scripts/buildVersions",
"generate-articles": "node ./scripts/buildArticles",
"generate-config-files": "npm run generate-versions && npm run generate-articles && npm run generate-redoc",
"dev": "next dev",
"build": "npm run generate-versions && npm run generate-articles && npm run generate-redoc && next build && cp _redirects .next/",
"postbuild": "next-sitemap",
"postinstall": "npm run generate-config-files",
"start": "next start",
"deploy-preview": "npm run generate-config-files && netlify build --context deploy-preview && netlify deploy --dir=.next",
"prepare": "husky install"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^3.9.2",
"husky": "^8.0.0",
"netlify-cli": "^8.6.21",
"netlify-plugin-cache-nextjs": "^1.6.1",
"postcss-normalize": "^8.0.1",
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "https://github.com/livechat/livechat-public-docs"
}
}