-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.02 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "gatsby-starter-essentials",
"private": true,
"version": "0.0.1",
"description": "Gatsby starter providing solid essentials to build upon",
"main": "index.js",
"scripts": {
"build": "gatsby build",
"build:debug": "gatsby build --no-uglify && gatsby serve -H 0.0.0.0",
"build:preview": "gatsby build && gatsby serve -H 0.0.0.0",
"develop": "gatsby develop -H 0.0.0.0",
"lint": "eslint --ignore-path .gitignore '**/*.js'",
"format": "eslint --ignore-path .gitignore '**/*.js' --fix",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/selrond/gatsby-starter-essentials.git"
},
"keywords": [
"gatsby",
"starter",
"styled-components",
"eslint",
"prettier",
"react"
],
"author": "Sebastian Andil <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/selrond/gatsby-starter-essentials/issues"
},
"homepage": "https://github.com/selrond/gatsby-starter-essentials#readme",
"dependencies": {
"babel-plugin-styled-components": "^1.12.0",
"gatsby": "^3.4.2",
"gatsby-plugin-manifest": "^3.5.0",
"gatsby-plugin-styled-components": "^4.7.1",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sanitize.css": "^12.0.1",
"styled-components": "^5.3.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prop-types": "^15.7.2"
},
"lint-staged": {
"*.js": [
"lint"
]
}
}