forked from launchdarkly/LaunchDarkly-Docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 4.39 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "git-gatsby",
"private": true,
"description": "LaunchDarkly's Docs Site",
"version": "1.0.0",
"author": "Yus Ng",
"dependencies": {
"@mdx-js/mdx": "^1.5.5",
"@theme-ui/components": "^0.3.1",
"@theme-ui/prism": "^0.3.0",
"algoliasearch": "^3.35.1",
"body-scroll-lock": "^2.6.4",
"dotenv": "^8.2.0",
"gatsby": "^2.18.0",
"gatsby-image": "^2.2.33",
"gatsby-plugin-catch-links": "2.1.24",
"gatsby-plugin-client-side-redirect": "^0.0.2",
"gatsby-plugin-google-analytics": "2.1.34",
"gatsby-plugin-launchdarkly": "^0.3.0",
"gatsby-plugin-manifest": "^2.2.29",
"gatsby-plugin-mdx": "^1.0.57",
"gatsby-plugin-offline": "^3.0.22",
"gatsby-plugin-react-helmet": "3.1.21",
"gatsby-plugin-react-helmet-async": "^1.0.11",
"gatsby-plugin-segment-js": "3.1.0",
"gatsby-plugin-sharp": "^2.3.2",
"gatsby-plugin-sitemap": "^2.2.27",
"gatsby-plugin-svgr-loader": "^0.1.0",
"gatsby-plugin-theme-ui": "^0.3.0",
"gatsby-remark-copy-linked-files": "^2.1.36",
"gatsby-remark-images": "^3.1.41",
"gatsby-remark-relative-images": "^0.2.3",
"gatsby-source-filesystem": "^2.1.38",
"gatsby-transformer-json": "^2.2.20",
"gatsby-transformer-sharp": "^2.3.5",
"lodash.noop": "^3.0.1",
"pluralize": "^8.0.0",
"prism-react-renderer": "^1.0.2",
"prismjs": "^1.18.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet-async": "^1.0.4",
"react-instantsearch-dom": "^6.1.0",
"remark-slug": "^5.1.2",
"slug": "^1.1.0",
"theme-ui": "^0.3.1"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "4.1.1",
"@svgr/cli": "^4.3.3",
"@testing-library/react": "^9.3.2",
"@types/algoliasearch": "3.34.7",
"@types/body-scroll-lock": "^2.6.1",
"@types/chai-string": "1.4.2",
"@types/jest": "^24.0.23",
"@types/lodash.noop": "^3.0.6",
"@types/pluralize": "^0.0.29",
"@types/prismjs": "^1.16.0",
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5",
"@types/react-helmet": "^5.0.14",
"@types/react-helmet-async": "^1.0.3",
"@types/react-instantsearch-dom": "5.2.6",
"@types/styled-system__css": "5.0.4",
"@types/theme-ui": "^0.3.0",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"chai-string": "1.5.0",
"cypress": "4.0.1",
"eslint": "^6.7.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"gatsby-plugin-algolia": "^0.5.0",
"gatsby-plugin-s3": "^0.3.2",
"gatsby-plugin-typescript": "^2.1.19",
"gatsby-theme-style-guide": "^0.3.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-emotion": "^10.0.26",
"onchange": "6.1.0",
"prettier": "^1.19.1",
"react-helmet": "6.0.0-beta.2",
"ts-jest": "^24.2.0",
"ts-loader": "6.2.1",
"ts-node": "8.6.0",
"typescript": "^3.7.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build-nav-data": "ts-node src/utils/buildNavData.ts",
"build-dev": "yarn clean && yarn build-nav-data && GATSBY_ACTIVE_ENV=development gatsby build",
"build-staging": "yarn build-nav-data && GATSBY_ACTIVE_ENV=staging gatsby build --prefix-paths",
"build-prod": "yarn build-nav-data && GATSBY_ACTIVE_ENV=production gatsby build",
"build-deploy-prod": "yarn build-prod && gatsby-plugin-s3 deploy --yes",
"prettier": "prettier --write \"**/*.{js,ts,tsx,json,yml}\"",
"prettierf": "prettier",
"build-staging-watch": "onchange '**/*.mdx' '**/*.json' -- yarn build-staging",
"start": "yarn build-nav-data && gatsby develop",
"serve-dev": "GATSBY_ACTIVE_ENV=development gatsby serve",
"serve-staging": "GATSBY_ACTIVE_ENV=staging gatsby serve --prefix-paths",
"clean": "gatsby clean",
"clean-all": "yarn clean && rimraf yarn.lock && rimraf dist && rimraf node_modules && yarn",
"test": "jest",
"tsc": "tsc",
"lint": "eslint --ignore-path .gitignore . --ext ts,tsx,js,jsx",
"cypress": "cypress open",
"cypress:ci": "cypress run"
},
"repository": {
"type": "git",
"url": "https://github.com/launchdarkly/git-gatsby"
},
"bugs": {
"url": "https://github.com/launchdarkly/git-gatsby/issues"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier && yarn lint && yarn tsc"
}
}
}