-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "gatsby-plugin-chatwoot",
"version": "1.1.0",
"description": "Gatsby plugin to add Chatwoot to your website",
"main": "index.js",
"author": "Akshit Kr Nagpal <[email protected]> (https://akshitkrnagpal.com)",
"license": "MIT",
"respository": {
"type": "git",
"url": "https://github.com/akshitkrnagpal/gatsby-plugin-chatwoot"
},
"bugs": {
"url": "https://github.com/akshitkrnagpal/gatsby-plugin-chatwoot/issues"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"chatwoot"
],
"dependencies": {
"@babel/runtime": "^7.8.3"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@testing-library/react": "^9.4.0",
"babel-preset-gatsby-package": "^0.2.15",
"cross-env": "^6.0.3"
},
"files": [
"gatsby-*.js"
],
"peerDependencies": {
"gatsby": ">= 2.19.5",
"react": ">= 16.12.0",
"react-dom": ">= 16.12.0"
},
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build"
},
"engines": {
"node": ">=8.0.0"
}
}