-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.33 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
101
102
103
104
105
106
107
108
109
{
"name": "featurepeek-marketing",
"private": true,
"description": "The public website of https://featurepeek.com",
"version": "0.1.0",
"author": "Jason Barry <[email protected]>",
"bugs": {
"url": "https://github.com/featurepeek/marketing/issues"
},
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop --port 3000",
"format": "prettier --write src/**/*.{js,jsx}",
"lint": "eslint 'src/**/*.{js,jsx}' --cache --ignore-path .gitignore",
"serve": "gatsby serve --port 3000",
"storybook:build": "build-storybook -c .storybook -o .out",
"storybook:dev": "start-storybook",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"husky": {
"hooks": {
"post-merge": "yarn",
"pre-commit": "lint-staged",
"pre-push": "yarn lint"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"yarn format",
"git add"
]
},
"dependencies": {
"@babel/core": "^7.6.2",
"@storybook/react": "^5.2.3",
"babel-loader": "^8.0.6",
"cheerio": "^1.0.0-rc.3",
"date-fns": "^1.30.1",
"gatsby": "^2.15.28",
"gatsby-background-image": "^0.8.14",
"gatsby-image": "^2.2.39",
"gatsby-plugin-disqus": "^1.1.4",
"gatsby-plugin-feed": "^2.3.26",
"gatsby-plugin-mailchimp": "^5.1.2",
"gatsby-plugin-postcss": "^2.1.19",
"gatsby-plugin-react-helmet": "^3.1.21",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-resolve-src": "^2.0.0",
"gatsby-plugin-segment-js": "^3.0.1",
"gatsby-plugin-sharp": "^2.2.27",
"gatsby-plugin-typography": "^2.3.21",
"gatsby-remark-autolink-headers": "^2.1.23",
"gatsby-remark-copy-linked-files": "^2.1.36",
"gatsby-remark-images": "^3.1.42",
"gatsby-remark-prismjs": "^3.3.30",
"gatsby-remark-responsive-iframe": "^2.2.31",
"gatsby-remark-smartypants": "^2.1.20",
"gatsby-source-filesystem": "^2.1.46",
"gatsby-source-mailchimp": "^0.7.0",
"gatsby-source-stripe": "^3.0.5",
"gatsby-transformer-remark": "^2.6.48",
"gatsby-transformer-sharp": "^2.2.19",
"js-cookie": "^2.2.1",
"marked": "^1.2.7",
"postcss-preset-env": "^6.6.0",
"prism-themes": "^1.4.0",
"prismjs": "^1.21.0",
"query-string": "^6.11.1",
"rc-switch": "^1.9.0",
"react": "^16.10.0",
"react-calendly": "^1.1.0",
"react-dom": "^16.10.0",
"react-grid-gallery": "^0.5.5",
"react-helmet": "^5.2.1",
"react-player": "^1.13.0",
"react-responsive": "^7.0.0",
"react-share": "^3.0.1",
"react-typist": "^2.0.5",
"react-typography": "^0.16.19",
"typography": "^0.16.19",
"typography-theme-github": "^0.16.19",
"ui-box": "^3.0.0",
"unfetch": "^4.1.0"
},
"devDependencies": {
"@storybook/addon-knobs": "^5.2.3",
"babel-eslint": "^10.0.3",
"eslint": "^6.4.0",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.1.0",
"husky": "^2.4.0",
"lint-staged": "^8.2.0",
"prettier": "^1.18.2"
},
"homepage": "https://github.com/featurepeek/marketing#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/featurepeek/marketing.git"
}
}