-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.37 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
{
"name": "cq-blog",
"description": "CQ Blog",
"version": "1.0.0",
"author": "Richie Dai <daichuqi@gmail.com>",
"dependencies": {
"@reach/router": "^1.3.3",
"@types/react": "^16.9.23",
"animejs": "^3.1.0",
"antd": "^4.5.2",
"axios": "^0.19.2",
"chalk": "^2.4.2",
"classnames": "^2.2.6",
"contentful-import": "^7.6.0",
"dangerously-set-html-content": "^1.0.3",
"emoji-mart": "^2.11.2",
"gatsby": "^2.19.32",
"gatsby-image": "^2.2.43",
"gatsby-link": "^2.2.30",
"gatsby-paginate": "^1.1.1",
"gatsby-plugin-create-client-paths": "^2.3.10",
"gatsby-plugin-google-analytics": "^2.1.37",
"gatsby-plugin-manifest": "^2.0.5",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sass": "^2.0.1",
"gatsby-plugin-sharp": "^2.3.9",
"gatsby-react-router-scroll": "^2.1.23",
"gatsby-remark-copy-linked-files": "^2.0.5",
"gatsby-remark-images": "^2.0.4",
"gatsby-remark-prismjs": "^3.0.0",
"gatsby-remark-responsive-iframe": "^2.0.5",
"gatsby-remark-smartypants": "^2.1.22",
"gatsby-source-contentful": "^2.1.50",
"gatsby-source-filesystem": "^2.1.50",
"gatsby-source-pg": "^0.1.4",
"gatsby-transformer-remark": "^2.1.6",
"gatsby-transformer-sharp": "^2.1.3",
"google-map-react": "^1.0.9",
"http-proxy-middleware": "^0.20.0",
"lodash": "^4.17.15",
"moment-timezone": "^0.5.21",
"node-sass": "^4.9.3",
"pg": "^7.18.1",
"prismjs": "^1.15.0",
"react": "^16.13.0",
"react-audio-player": "^0.11.1",
"react-avatar-editor": "^11.0.9",
"react-columns": "^1.2.1",
"react-dom": "^16.13.0",
"react-draggable": "^4.2.0",
"react-helmet": "^5.2.1",
"react-keydown": "^1.9.7",
"react-redux": "^7.1.3",
"react-typography": "^0.16.13",
"react-youtube": "^7.9.0",
"redux": "^4.0.4",
"socket.io-client": "^2.3.0",
"twilio": "^3.39.4",
"twilio-video": "^2.1.0",
"typography": "^0.16.17",
"typography-theme-wordpress-2016": "^0.15.10",
"yargs-parser": "^15.0.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.11.1",
"faunadb": "^2.11.1",
"gh-pages": "^1.2.0",
"husky": "^2.4.1",
"netlify-lambda": "^1.6.3",
"npm-run-all": "^4.1.5",
"prettier": "1.19.1",
"pretty-quick": "^1.11.1"
},
"homepage": "https://github.com/gatsbyjs/gatsby-starter-blog#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/gatsbyjs/gatsby-starter-blog.git"
},
"scripts": {
"heroku-postbuild": "gatsby build",
"start": "gatsby serve",
"dev": "GATSBY_ENV=development gatsby develop",
"build": "GATSBY_ENV=production gatsby build",
"test": "echo \"Error: no test specified\" && exit 1",
"setup": "yarn add contentful-import yargs-parser axios chalk && node ./setup.js",
"start:all": "npm-run-all --parallel start:app start:server",
"build:all": "npm-run-all --parallel build:**",
"dev:all": "npm-run-all --parallel dev:app dev:server",
"start:server": "netlify-lambda serve functions -c ./webpack.config.js",
"dev:server": "netlify-lambda serve functions -c ./webpack.config.js",
"build:functions": "netlify-lambda build functions -c ./webpack.config.js"
}
}