-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.65 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": "shebang",
"version": "1.0.0",
"private": true,
"description": "shebang.consulting",
"repository": {
"type": "git",
"url": "https://github.com/simonkberg/shebang"
},
"license": "MIT",
"author": "Simon Kjellberg <[email protected]>",
"scripts": {
"build": "gatsby build",
"eslint:check": "eslint .",
"eslint:fix": "eslint . --fix",
"prettier:check": "prettier --list-different '**/*.{js?(on),md,y?(a)ml}'",
"prettier:format": "prettier --write '**/*.{js?(on),md,y?(a)ml}'",
"start": "gatsby develop",
"test": "yarn eslint:check && yarn prettier:check"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,y?(a)ml}": [
"prettier --write"
]
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/.cache/",
"/public/"
]
},
"dependencies": {
"@emotion/react": "11.4.0",
"@emotion/styled": "11.3.0",
"gatsby": "2.32.13",
"gatsby-plugin-emotion": "5.4.0",
"gatsby-plugin-manifest": "2.12.1",
"gatsby-plugin-netlify": "2.11.1",
"gatsby-plugin-offline": "3.10.2",
"gatsby-plugin-react-helmet": "3.10.0",
"gatsby-plugin-sitemap": "2.12.0",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"sanitize.css": "12.0.1"
},
"devDependencies": {
"@simonkberg/eslint-config": "24.0.0",
"eslint": "7.23.0",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"prettier": "2.2.1"
},
"resolutions": {
"serialize-javascript": "5.0.1"
}
}