-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "gatsby-plugin-anchor-links",
"version": "1.2.1",
"main": "index.js",
"author": "Chase Ohlson <chase@chaseohlson.com>",
"description": "Gatsby plugin for using anchor links with a Gatsby Link component.",
"homepage": "https://github.com/brohlson/gatsby-plugin-anchor-links",
"license": "MIT",
"scripts": {
"build": "babel src/ --out-dir . --ignore __tests__",
"watch": "babel -w src/ --out-dir . --ignore __tests__",
"format": "prettier --config ./.prettierrc --write 'src/**/*.{js,jsx}'"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^7.2.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.22.0",
"gatsby": "^2.31.1",
"gatsby-plugin-eslint": "^2.0.3",
"husky": "^4.3.8",
"jest": "^26.6.2",
"prettier": "^2.2.1",
"react": "^17.0.1"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"gatsby-anchor-links",
"gatsby-plugin-anchor-links"
],
"dependencies": {
"scroll-to-element": "^2.0.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn format"
}
}
}