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
|
{
"name": "sonar-docs",
"version": "0.0.0",
"license": "LGPL-3.0",
"private": true,
"dependencies": {
"fs-extra": "^5.0.0",
"gatsby": "^1.9.247",
"gatsby-link": "^1.6.40",
"gatsby-plugin-glamor": "^1.6.13",
"gatsby-plugin-react-helmet": "^2.0.10",
"gatsby-plugin-typography": "^1.7.18",
"gatsby-remark-custom-blocks": "^1.0.5",
"gatsby-source-filesystem": "^1.5.34",
"gatsby-transformer-remark": "^1.7.40",
"react-helmet": "^5.2.0",
"remark-include": "^2.0.0",
"serve": "^6.5.6",
"typography": "^0.16.16"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "serve public/",
"format": "prettier --write 'src/**/*.{md,js}'"
},
"devDependencies": {
"prettier": "^1.12.0"
},
"prettier": {
"jsxBracketSameLine": true,
"printWidth": 100,
"singleQuote": true
}
}
|