-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.2 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
{
"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": {
"framer-motion": "^1.6.15",
"modern-normalize": "^0.5.0",
"peerjs": "^1.1.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-dropzone-uploader": "^2.10.2",
"react-helmet": "^5.2.1",
"react-textarea-autosize": "^7.1.2",
"share-api-polyfill": "^1.0.11",
"styled-components": "^4.4.1",
"typeface-kalam": "0.0.72"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.3.4",
"@svgr/webpack": "^5.4.0",
"babel-plugin-styled-components": "^1.10.6",
"babel-eslint": "^10.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-config-react-app": "^5.1.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.6.0",
"gatsby": "^2.24.56",
"gatsby-image": "^2.4.17",
"gatsby-plugin-manifest": "^2.4.28",
"gatsby-plugin-offline": "^3.2.27",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sharp": "^2.6.34",
"gatsby-plugin-styled-components": "^3.1.14",
"gatsby-plugin-svgr": "^2.0.2",
"gatsby-source-filesystem": "^2.3.29",
"gatsby-transformer-sharp": "^2.5.14",
"pretty-quick": "^3.0.0",
"husky": "^4.3.0",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.0",
"prettier-eslint-cli": "^5.0.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop -H 0.0.0.0 -p 8000",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
}
}