-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.6 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
{
"name": "django-meets-blockchain-site",
"description": "Documentation for Django Meets Blockchain",
"version": "1.0.0",
"private": true,
"author": "Chris McMahon <[email protected]>",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"clean": "rimraf public",
"commit": "git cz",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"dev": "gatsby develop",
"lint": "tslint 'src/**/*.{ts,tsx}'",
"start": "serve public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"babel-plugin-styled-components": "^1.5.1",
"classnames": "^2.2.5",
"dotenv": "^6.0.0",
"gatsby": "^1.9.274",
"gatsby-link": "^1.6.45",
"gatsby-plugin-canonical-urls": "^1.0.18",
"gatsby-plugin-catch-links": "^1.0.24",
"gatsby-plugin-google-analytics": "^1.0.31",
"gatsby-plugin-manifest": "^1.0.27",
"gatsby-plugin-netlify": "^1.0.21",
"gatsby-plugin-netlify-cache": "^0.1.0",
"gatsby-plugin-nprogress": "^1.0.14",
"gatsby-plugin-react-helmet": "^2.0.11",
"gatsby-plugin-react-next": "^1.0.11",
"gatsby-plugin-resolve-src": "^1.1.4",
"gatsby-plugin-sharp": "^1.6.48",
"gatsby-plugin-styled-components": "^2.0.11",
"gatsby-plugin-typescript": "^1.4.20",
"gatsby-remark-autolink-headers": "^1.4.19",
"gatsby-remark-copy-linked-files": "^1.5.37",
"gatsby-remark-images": "^1.5.67",
"gatsby-remark-prismjs": "^1.2.17",
"gatsby-remark-responsive-iframe": "^1.4.20",
"gatsby-remark-smartypants": "^1.4.12",
"gatsby-source-filesystem": "^1.5.39",
"gatsby-transformer-json": "^1.0.20",
"gatsby-transformer-remark": "^1.7.44",
"gatsby-transformer-sharp": "^1.6.27",
"moment": "^2.22.2",
"polished": "^1.9.3",
"prism-themes": "^1.0.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-media-match": "^1.3.1",
"styled-components": "^3.3.3",
"typescript": "^2.9.2"
},
"devDependencies": {
"@types/classnames": "^2.2.4",
"@types/history": "^4.6.2",
"@types/node": "^10.5.2",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"@types/react-helmet": "^5.0.6",
"@types/react-router-dom": "^4.2.7",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"gh-pages": "^1.2.0",
"prettier": "^1.13.7",
"rimraf": "^2.6.2",
"serve": "^9.2.0",
"tslint": "^5.10.0",
"tslint-config-kata": "^1.0.5",
"tslint-react": "^3.6.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}