forked from api-platform/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.17 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "api-platform-website",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"classnames": "^2.2.5",
"dayjs": "^1.8.21",
"eject": "^0.0.4",
"eslint-import-resolver-alias": "^1.1.2",
"gatsby": "^2.0.91",
"gatsby-image": "^3.0.0",
"gatsby-plugin-build-date": "^1.0.0",
"gatsby-plugin-dark-mode": "^1.1.2",
"gatsby-plugin-google-analytics": "^2.1.16",
"gatsby-plugin-manifest": "^2.0.13",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-offline": "^2.0.21",
"gatsby-plugin-react-helmet": "^3.0.5",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-root-import": "^2.0.6",
"gatsby-plugin-sass": "^2.1.14",
"gatsby-plugin-sharp": "^2.4.5",
"gatsby-plugin-sitemap": "^2.0.4",
"gatsby-plugin-twitter": "^2.0.8",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images-medium-zoom": "^1.3.0",
"gatsby-remark-prismjs": "^3.2.0",
"gatsby-remark-relative-images": "^0.2.1",
"gatsby-transformer-sharp": "^2.2.14",
"gatsby-transformer-yaml": "^2.2.9",
"h5o": "^0.11.3",
"jsdom": "^11.11.0",
"mapbox-gl": "1.13.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.0.0",
"normalize.css": "^7.0.0",
"prismjs": "^1.13",
"react": "^16.7.0",
"react-async-script-loader": "^0.3.0",
"react-collapsible": "^2.0.3",
"react-dom": "^16.7.0",
"react-helmet": "^5.2.0",
"react-html-parser": "^2.0.1",
"react-router-dom": "^4.3.1",
"react-swipeable-views": "^0.13.9",
"react-use": "^17.1.1",
"typescript": "^4.2.0",
"webpack": "^4.28.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.3.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.2.1",
"eslint-plugin-react-hooks": "^4.0.4",
"gatsby-plugin-catch-links": "^2.0.11",
"gatsby-remark-autolink-headers": "^2.0.12",
"gatsby-remark-code-selector": "^0.1.2",
"gatsby-remark-copy-images": "^0.2.1",
"gatsby-remark-copy-linked-files": "^2.1.19",
"gatsby-remark-images": "^3.0.1",
"gatsby-remark-responsive-image": "^1.0.0-alpha13-alpha.435e0178",
"gatsby-source-filesystem": "^2.1.22",
"gatsby-transformer-remark": "^2.2.5",
"husky": "^4.3.8",
"js-yaml": "^3.10.0",
"lint-staged": "^10.2.0",
"markdown": "^0.5.0",
"prettier": "^2.0.0",
"remark-inline-links": "^3.0.4",
"xmldom": "^0.1.27",
"xpath": "^0.0.27"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,css,md}": [
"eslint --fix"
]
},
"scripts": {
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "eslint --fix .",
"lint": "eslint .",
"postinstall": "npm rebuild node-sass",
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged"
}
}