forked from davidde/sidebars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 866 Bytes
/
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
{
"name": "sidebars",
"description": "Simple responsive sidebars",
"version": "0.1.0",
"license": "MIT",
"keywords": [
"sidebar",
"react",
"gatsby"
],
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
},
"dependencies": {
"gatsby": "^2.18.5",
"gatsby-plugin-sass": "^2.1.23",
"node-sass": "^4.13.0",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"gh-pages": "^2.1.1",
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "https://github.com/davidde/sidebars"
}
}