-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.63 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
{
"name": "chaingraph-io",
"private": true,
"description": "Blockchain real-time data without any hassle. ChainGraph provides reliable real-time graphql APIs for blockchain applications.",
"version": "0.1.0",
"author": "Roberto Romero Lucas",
"dependencies": {
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"@styled-system/theme-get": "^5.1.2",
"aos": "^2.3.4",
"dotenv": "^8.2.0",
"emotion-theming": "^10.0.27",
"framer-motion": "^2.9.4",
"gatsby": "^2.21.37",
"gatsby-image": "^2.4.4",
"gatsby-plugin-emotion": "^4.3.15",
"gatsby-plugin-mailchimp": "^5.2.2",
"gatsby-plugin-manifest": "^2.4.5",
"gatsby-plugin-netlify-cms": "^4.3.3",
"gatsby-plugin-offline": "^3.2.3",
"gatsby-plugin-react-helmet": "^3.3.1",
"gatsby-plugin-react-i18next": "^1.1.1",
"gatsby-plugin-sharp": "^2.6.4",
"gatsby-source-filesystem": "^2.3.8",
"gatsby-transformer-remark": "^2.8.13",
"gatsby-transformer-sharp": "^2.5.2",
"gh-pages": "^6.1.1",
"i18next": "^20.2.4",
"netlify-cms-app": "^2.12.13",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-ga": "^3.2.0",
"react-helmet": "^6.0.0",
"react-i18next": "^11.8.15",
"react-icons": "^3.11.0",
"react-svg": "^11.0.44",
"rebass": "^4.0.7",
"styled-system": "^5.1.5",
"universal-cookie": "^4.0.4",
"unstated-next": "^1.1.0"
},
"devDependencies": {
"@blockmatic/eslint-config": "^1.3.11",
"@blockmatic/prettier-config": "^1.3.3",
"babel-eslint": "^10.1.0",
"eslint": "6.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2"
},
"keywords": [
"gatsby",
"graphql",
"blockchain",
"chaingraph",
"blockmatic",
"react"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "yarn run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"lint": "eslint --ignore-path .gitignore \"**/*.+(js|ts|tsx)\"",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"deploy": "gatsby build && gh-pages -d public"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/chaingraph/chaingraph.io"
},
"bugs": {
"url": "https://github.com/chaingraph/chaingraph.io/issues"
}
}