-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
48 lines (48 loc) · 1.43 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
{
"name": "gatsby-starter-default",
"description": "Gatsby default starter",
"version": "1.0.0",
"author": "Kyle Mathews <[email protected]>",
"dependencies": {
"@jacobmischka/gatsby-plugin-react-svg":
"git+https://github.com/jacobmischka/gatsby-plugin-react-svg.git",
"docsearch.js": "^2.5.2",
"gatsby": "^1.9.73",
"gatsby-link": "^1.6.22",
"gatsby-plugin-google-analytics": "^1.0.22",
"gatsby-plugin-react-helmet": "^1.0.8",
"gatsby-plugin-styled-jsx": "^1.0.11",
"lost": "8.2.0",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-nested": "2.1.2",
"react-icons": "^3.0.5",
"react-intersection-observer": "^6.2.1",
"rucksack-css": "^1.0.2",
"styled-jsx-plugin-postcss": "0.1.0"
},
"keywords": ["gatsby"],
"license": "MIT",
"main": "n/a",
"scripts": {
"clean": "rm -rf ./public",
"create-sphinx-theme": "./scripts/create_package",
"build":
"yarn clean && gatsby build --prefix-paths && ./scripts/replace && yarn create-sphinx-theme",
"develop": "gatsby develop",
"serve": "gatsby serve",
"format":
"prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"prettier": "^1.7.4"
},
"postcss": {
"plugins": {
"lost": {},
"postcss-nested": {}
}
}
}