-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 1.78 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
70
71
72
{
"name": "axrl",
"version": "0.1.0",
"description": "Accessibility Report Language: A data format for accessibility test data",
"author": "Wilco Fiers",
"license": "UNLICENSED",
"keywords": [
"accessibility",
"json-ld",
"rdf"
],
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"start": "npm run develop",
"format": "prettier --write *.{js,json,md} \"plugins/**/*.{js,json}\" \"src/**/*.{js,css,md,json}\"",
"precommit": "lint-staged"
},
"dependencies": {
"gatsby": "^2.20.10",
"gatsby-image": "^2.0.20",
"gatsby-plugin-manifest": "^2.0.9",
"gatsby-plugin-offline": "^2.0.16",
"gatsby-plugin-react-helmet": "^3.0.2",
"gatsby-plugin-sharp": "^2.0.14",
"gatsby-remark-prismjs": "^3.2.3",
"gatsby-source-filesystem": "^2.0.12",
"gatsby-transformer-remark": "^2.2.2",
"gatsby-transformer-sharp": "^2.1.8",
"prismjs": "^1.23.0",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-helmet": "^5.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.11.1",
"eslint-config-prettier": "^3.3.0",
"gh-pages": "^2.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "^1.15.2"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{css,md,json}": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 60,
"bracketSpacing": true,
"useTabs": false,
"trailingComma": "none",
"arrowParens": "avoid"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"prettier"
]
}
}