forked from stellar/new-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.52 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
{
"name": "stellar-docs",
"private": true,
"description": "Documentation for the Stellar network.",
"version": "0.0.0",
"author": "Carl Vitullo <carl@stellar.org>",
"dependencies": {
"@mdx-js/mdx": "^1.4.5",
"@mdx-js/react": "^1.4.5",
"eslint-config-airbnb": "^18.0.1",
"gatsby": "^2.15.14",
"gatsby-image": "^2.2.18",
"gatsby-plugin-eslint": "^2.0.5",
"gatsby-plugin-manifest": "^2.2.16",
"gatsby-plugin-mdx": "^1.0.41",
"gatsby-plugin-offline": "^2.2.10",
"gatsby-plugin-react-helmet": "^3.1.7",
"gatsby-plugin-sharp": "^2.2.21",
"gatsby-remark-prismjs": "^3.3.13",
"gatsby-remark-smartypants": "^2.1.8",
"gatsby-source-filesystem": "^2.1.22",
"gatsby-transformer-sharp": "^2.2.14",
"prismjs": "^1.17.1",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@stellar/eslint-config": "^1.0.2",
"@stellar/prettier-config": "^1.0.1",
"husky": "^3.0.5",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"start": "gatsby develop",
"serve": "gatsby serve",
"test": "echo \"no tests!!\""
},
"repository": {
"type": "git",
"url": "https://github.com/stellar/docs"
},
"bugs": {
"url": "https://github.com/stellar/docs/issues"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}