-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.43 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
69
{
"name": "patrick-hooper",
"version": "3.3.0",
"description": "The portfolio website for Patrick Hooper.",
"homepage": "https://patrickhooper.me",
"bugs": {
"url": "https://github.com/pdhoopr/website/issues"
},
"license": "MIT",
"author": "Patrick Hooper <[email protected]> (https://patrickhooper.me)",
"repository": {
"type": "git",
"url": "https://github.com/pdhoopr/website"
},
"scripts": {
"build": "npx --node-arg '-r esm' gatsby build",
"ci": "npm run format && npm run lint && npm run build",
"clean": "gatsby clean",
"develop": "npx --node-arg '-r esm' gatsby develop -H 0.0.0.0",
"format": "is-ci format:check format:write",
"format:_": "prettier --ignore-path .gitignore '**/*.{js,json,md}'",
"format:check": "npm run format:_ -- --check",
"format:write": "npm run format:_ -- --write",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint --ignore-path .gitignore '**/*.js'",
"lint:js": "eslint --ignore-path .gitignore '**/*.js'",
"serve": "npm run build && npx --node-arg '-r esm' gatsby serve -H 0.0.0.0",
"start": "npm run develop"
},
"dependencies": {
"@svgr/webpack": "^5.4.0",
"babel-plugin-styled-components": "^1.10.7",
"gatsby": "^2.24.4",
"gatsby-plugin-manifest": "^2.4.18",
"gatsby-plugin-nprogress": "^2.3.10",
"gatsby-plugin-offline": "^3.2.18",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sitemap": "^2.4.11",
"gatsby-plugin-styled-components": "^3.3.10",
"gatsby-plugin-svgr": "^2.0.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"styled-components": "^5.1.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-compat": "^3.8.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"esm": "^3.2.25",
"husky": "^4.2.5",
"is-ci-cli": "^2.1.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-no-unsupported-browser-features": "^4.0.0",
"stylelint-processor-styled-components": "^1.10.0"
},
"private": true
}