-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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
{
"name": "igloo-devops-http-default-backend",
"description": "iGLOO default backend",
"version": "2.2.0",
"dependencies": {
"gatsby": "^2.8.8",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-styled-components": "^3.0.7",
"normalize.css": "^8.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"recompose": "^0.30.0",
"styled-components": "^4.3.1"
},
"license": "MIT",
"scripts": {
"start": "npm run develop",
"build": "gatsby build",
"build:prefix": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js'",
"test": "npm run lint",
"lint": "eslint --ignore-path .gitignore ."
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"gatsby-plugin-layout": "^1.0.15",
"prettier": "^1.18.2"
}
}