forked from witchscrow/dev.tezos.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.02 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
{
"name": "developers.tezos.com",
"private": true,
"description": "A site for various tutorials related to Tezos",
"version": "0.1.0",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/core": "^7.8.7",
"@babel/runtime": "^7.8.7",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"emotion": "^10.0.27",
"gatsby": "^2.19.49",
"gatsby-image": "^2.2.45",
"gatsby-plugin-emotion": "^4.1.25",
"gatsby-plugin-google-analytics": "^2.1.38",
"gatsby-plugin-manifest": "^2.2.48",
"gatsby-plugin-offline": "^3.0.42",
"gatsby-plugin-react-helmet": "^3.1.24",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sharp": "^2.4.13",
"gatsby-plugin-typography": "^2.3.25",
"gatsby-transformer-sharp": "^2.3.19",
"gh-pages": "^2.0.1",
"lodash.debounce": "^4.0.8",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-error-overlay": "^6.0.6",
"react-helmet": "^5.2.0",
"react-typography": "^0.16.19",
"typeface-roboto": "0.0.75",
"typescript": "^3.8.3",
"typography": "^0.16.19"
},
"devDependencies": {
"gatsby-plugin-mailchimp": "^5.1.0",
"gatsby-plugin-sitemap": "^2.2.30",
"gatsby-source-filesystem": "^2.1.57",
"gatsby-transformer-remark": "^2.6.59",
"prettier": "^1.17.0",
"express": "^4.17.1",
"node-link-checker": "tqtezos/broken-link-checker#v0.7.x",
"serve-static": "^1.14.1",
"start-server-and-test": "^1.10.11"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"serve-static": "node ./serve.js",
"test:links": "npm run build && npm run test:links:no-build",
"test:links:no-build": "start-server-and-test serve-static 8000 'blc http://localhost:8000 -r -f true'"
}
}