forked from Uniswap/org-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.79 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
110
111
112
113
114
115
116
{
"name": "@uniswap/org",
"private": true,
"description": "Uniswap homepage and knowledgebase",
"version": "0.1.0",
"author": "Callil Capuozzo <[email protected]>",
"engines": {
"node": "12.x"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@mdx-js/mdx": "^1.5.5",
"@mdx-js/react": "^1.5.5",
"@react-hook/media-query": "^1.0.1",
"algoliasearch": "^4.3.0",
"apollo-boost": "^0.4.7",
"apollo-cache-inmemory": "^1.6.6",
"apollo-link-http": "^1.5.17",
"babel-plugin-styled-components": "^1.10.7",
"dayjs": "^1.8.22",
"dotenv": "^8.2.0",
"gatsby": "^2.22.15",
"gatsby-background-image": "^0.10.2",
"gatsby-image": "^2.4.5",
"gatsby-plugin-algolia": "^0.11.1",
"gatsby-plugin-algolia-docsearch-appid": "^0.0.4",
"gatsby-plugin-feed": "^2.5.3",
"gatsby-plugin-instagram-embed": "^1.1.0",
"gatsby-plugin-layout": "^1.3.2",
"gatsby-plugin-local-search": "^1.1.1",
"gatsby-plugin-manifest": "^2.4.9",
"gatsby-plugin-mdx": "^1.2.13",
"gatsby-plugin-offline": "^3.2.7",
"gatsby-plugin-page-creator": "^2.3.7",
"gatsby-plugin-page-transitions": "^1.0.8",
"gatsby-plugin-react-helmet": "^3.3.6",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sharp": "^2.6.9",
"gatsby-plugin-sitemap": "^2.4.3",
"gatsby-plugin-slug-field": "^0.1.0",
"gatsby-plugin-smoothscroll": "^1.1.0",
"gatsby-plugin-styled-components": "^3.3.9",
"gatsby-plugin-twitter": "^2.3.2",
"gatsby-remark-autolink-headers": "^2.3.3",
"gatsby-remark-check-links": "^2.1.0",
"gatsby-remark-copy-linked-files": "^2.3.3",
"gatsby-remark-embedder": "^1.16.0",
"gatsby-remark-images": "^3.3.8",
"gatsby-remark-prismjs": "^3.5.2",
"gatsby-remark-reading-time": "^1.1.0",
"gatsby-remark-responsive-iframe": "^2.2.30",
"gatsby-remark-smartypants": "^2.1.21",
"gatsby-remark-twitter-cards": "^0.2.0",
"gatsby-source-filesystem": "^2.3.18",
"gatsby-transformer-sharp": "^2.5.3",
"github-slugger": "^1.2.1",
"graphql-tag": "^2.10.3",
"isomorphic-fetch": "^2.2.1",
"katex": "^0.11.1",
"lunr": "^2.3.8",
"marquee3000": "^1.1.1",
"prism-react-renderer": "^1.0.2",
"prismjs": "^1.19.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.8",
"react-feather": "^2.0.8",
"react-helmet": "^6.1.0",
"react-instantsearch-dom": "^6.6.0",
"react-intersection-observer": "^8.26.1",
"react-moment": "^0.9.7",
"react-social-sharing": "^3.0.1",
"react-use-clipboard": "1.0.0",
"rehype-katex": "^3.0.0",
"remark": "^11.0.2",
"remark-math": "^2.0.1",
"strip-markdown": "^3.1.1",
"styled-components": "^5.0.1"
},
"devDependencies": {
"@uniswap/token-lists": "^1.0.0-beta.19",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.18.3",
"gatsby-plugin-canonical-urls": "^2.3.10",
"gatsby-plugin-eslint": "^2.0.8",
"gatsby-plugin-replace-path": "^1.0.0",
"gatsby-plugin-s3": "^0.3.4",
"prettier": "^1.19.1"
},
"keywords": [
"gatsby"
],
"license": "GPL-3.0-or-later",
"scripts": {
"develop": "gatsby develop",
"dev": "gatsby develop",
"devlocal": "gatsby develop -H 0.0.0.0",
"start": "gatsby develop",
"build": "gatsby build && yarn post-build",
"post-build": "cp ./node_modules/@uniswap/token-lists/src/tokenlist.schema.json public/",
"serve": "gatsby serve",
"clean": "gatsby clean",
"format": "prettier --write \"src/**/*.{js,jsx,md,mdx}\"",
"deploy": "gatsby-plugin-s3 deploy"
},
"repository": {
"type": "git",
"url": "https://github.com/Uniswap/uniswap-org"
},
"bugs": {
"url": "https://github.com/Uniswap/uniswap-org/issues"
}
}