-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "gatsby-example-mobx",
"version": "1.0.0",
"private": true,
"description": "Gatsby example site that shows use of mobx",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"src/**/*.js\"",
"lint": "eslint **/*.{js,jsx} --quiet -o linterrors.txt --ignore-path .gitignore",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "gh-pages -b gh-pages -d public",
"pre-deploy": "gatsby build --prefix-paths"
},
"main": "n/a",
"keywords": [
"gatsby",
"mobx"
],
"author": "jonniebigodes <[email protected]>",
"license": "MIT",
"dependencies": {
"gatsby": "^2.15.9",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"gh-pages": "^2.0.1",
"prettier": "^1.18.2"
}
}