-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.23 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
{
"private": true,
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"run-server": "node server/websocket-endpoint.js",
"lint:es": "eslint --ignore-path .gitignore \"**/*.{js,jsx}\"",
"lint:style": "stylelint \"src/**/*.scss\"",
"lint": "yarn lint:es && yarn lint:style",
"format": "prettier-eslint --write \"**/*.{js,jsx,json,css,scss,md}\""
},
"dependencies": {
"babel-plugin-styled-components": "^1.5.1",
"debounce": "^1.2.0",
"gatsby": "next",
"gatsby-plugin-manifest": "next",
"gatsby-plugin-offline": "next",
"gatsby-plugin-react-helmet": "next",
"gatsby-plugin-styled-components": "^3.0.0-rc.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-helmet": "^5.2.0",
"styled-components": "^3.4.2",
"uuid": "^3.3.2",
"websocket": "^1.0.28"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"prettier-eslint-cli": "^4.7.0",
"stylelint": "^9.2.0",
"stylelint-config-idiomatic-order": "^5.0.0",
"stylelint-config-recommended-scss": "^3.0.0",
"stylelint-scss": "^3.0.0"
}
}