-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.54 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
{
"name": "gatsby-starter-default",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.1.0",
"author": "Kyle Mathews <[email protected]>",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"animate.css": "^4.1.0",
"gatsby": "^2.24.50",
"gatsby-image": "^2.4.16",
"gatsby-plugin-anchor-links": "^1.1.1",
"gatsby-plugin-google-analytics": "^2.3.13",
"gatsby-plugin-manifest": "^2.4.24",
"gatsby-plugin-offline": "^3.2.24",
"gatsby-plugin-prefetch-google-fonts": "^1.4.3",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-react-redux": "^1.1.0-0",
"gatsby-plugin-sass": "^2.3.12",
"gatsby-plugin-sharp": "^2.6.27",
"gatsby-source-filesystem": "^2.3.25",
"gatsby-source-wordpress": "^3.3.29",
"gatsby-transformer-sharp": "^2.5.12",
"lint-staged": "^10.2.11",
"lodash": "^4.17.20",
"moment": "^2.27.0",
"node-sass": "^4.14.1",
"og-css": "^3.1.4",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-html-parser": "^2.0.2",
"react-redux": "^7.2.1",
"react-truncate-markup": "^5.0.0",
"react-visibility-sensor": "^5.1.1",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"sass": "^1.26.10",
"sass-loader": "^10.0.1"
},
"devDependencies": {
"eslint-config-react-app": "^5.2.1",
"gatsby-plugin-root-import": "^2.0.5",
"husky": "^4.2.5",
"prettier": "^2.1.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"precommit": "cross-env NODE_ENV=production lint-staged",
"lint": "eslint --ext .js,.vue src ",
"lint-format": "prettier --check \"**/*.{js,jsx,json,md}\"",
"clean": "gatsby clean",
"test": "npm run lint & npm run lint-format"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json,md}": [
"prettier --write"
]
}
}