-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.24 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
{
"name": "flex-docs",
"description": "Sharetribe Developer Platform documentation site",
"version": "1.0.0",
"license": "Apache License, Version 2.0",
"repository": {
"type": "git",
"url": "https://github.com/sharetribe/flex-docs"
},
"private": true,
"engines": {
"node": "18.x"
},
"scripts": {
"clean": "rm -rf .cache public",
"build": "gatsby build --prefix-paths",
"dev": "gatsby develop",
"serve": "gatsby serve --prefix-paths",
"prod": "export NODE_ENV=production && yarn run build && yarn run serve",
"format": "yarn run format-js && yarn run format-config && yarn run format-docs",
"format-js": "prettier --write \"src/**/*.js\"",
"format-config": "prettier --write \"gatsby-config.js\" \"gatsby-node.js\" \"gatsby-browser.js\"",
"format-docs": "prettier --print-width=72 --write \"src/**/*.md\" \"docs/**/*.md\"",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"dependencies": {
"@babel/runtime": "^7.20.13",
"@docsearch/react": "3",
"babel-plugin-styled-components": "^1.13.3",
"gatsby": "^5.13.3",
"gatsby-plugin-catch-links": "^5.13.1",
"gatsby-plugin-cookiebot": "^1.0.3",
"gatsby-plugin-google-tagmanager": "^5.13.1",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-react-helmet": "^6.13.1",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-plugin-sitemap": "^6.13.1",
"gatsby-plugin-styled-components": "^6.13.1",
"gatsby-remark-autolink-headers": "^6.13.1",
"gatsby-remark-copy-linked-files": "^6.13.1",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^7.13.1",
"gatsby-remark-prismjs": "^7.13.1",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-remark": "^6.13.1",
"gatsby-transformer-sharp": "^5.13.1",
"github-slugger": "^1.4.0",
"no-scroll": "^2.1.1",
"polished": "^4.3.1",
"prismjs": "^1.27.0",
"prop-types": "^15.8.1",
"react": "18",
"react-dom": "18",
"react-helmet": "^5.2.1",
"react-modal": "^3.11.1",
"rehype-react": "^4.0.1",
"sanitize.css": "^11.0.0",
"styled-components": "^5.3.3"
},
"devDependencies": {
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^1.19.1"
}
}