This repository has been archived by the owner on May 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.18 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
{
"name": "gatsby-watermelon",
"private": true,
"description": "A GatsbyJS boilerplate with Redux and socket.io all wrapped up nicely in an Express server.",
"version": "0.1.0",
"author": "Sam Larsen-Disney <s.larsendisney@gmail.com>",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"concurrently": "^5.2.0",
"express": "^4.17.1",
"socket.io": "^2.3.0",
"supervisor": "^0.12.0"
},
"devDependencies": {
"flexboxgrid-sass": "^8.0.5",
"gatsby": "^2.21.37",
"gatsby-image": "^2.4.4",
"gatsby-plugin-manifest": "^2.4.5",
"gatsby-plugin-offline": "^3.2.3",
"gatsby-plugin-react-helmet": "^3.3.1",
"gatsby-plugin-sass": "^2.3.1",
"gatsby-plugin-sharp": "^2.6.4",
"gatsby-remark-copy-images": "^0.2.1",
"gatsby-remark-copy-linked-files": "^2.3.2",
"gatsby-remark-images": "^3.3.4",
"gatsby-remark-prismjs": "^3.5.1",
"gatsby-remark-relative-images": "^0.3.0",
"gatsby-remark-responsive-iframe": "^2.4.2",
"gatsby-remark-smartypants": "^2.3.1",
"gatsby-source-filesystem": "^2.3.4",
"gatsby-transformer-remark": "^2.8.9",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"prismjs": "^1.20.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-blur-image-loader": "^0.2.2",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-socket.io": "^1.4.0",
"sass-flex-mixin": "^1.0.3",
"sharp": "^0.25.3",
"sld-component-library": "^0.1.5",
"socket.io-client": "^2.3.0",
"typescript": "^3.9.2"
},
"keywords": [
"gatsby",
"watermelon"
],
"license": "MIT",
"scripts": {
"build": "gatsby build && node server/index.js",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "concurrently 'npm run hello && gatsby develop -o -p 5051' 'supervisor --watch server/index.js server/index.js'",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \"",
"hello": "node scripts/hello.js"
},
"repository": {
"type": "git",
"url": "https://github.com/slarsendisney/gatsby-watermelon"
}
}