-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 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
69
70
{
"name": "gatsby-starter-netlify-cms",
"description": "Example Gatsby, and Netlify CMS project",
"version": "1.1.3",
"author": "Austin Green",
"packageManager": "[email protected]",
"engines": {
"node": "16.x"
},
"dependencies": {
"bulma": "^0.7.5",
"gatsby": "^3.0.0",
"gatsby-image": "^3.0.0",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-netlify": "^3.14.0",
"gatsby-plugin-netlify-cms": "^5.0.0",
"gatsby-plugin-purgecss": "^4.0.0",
"gatsby-plugin-react-helmet": "^4.0.0",
"gatsby-plugin-sass": "^4.0.0",
"gatsby-plugin-sharp": "^3.0.0",
"gatsby-redirect-from": "^0.2.1",
"gatsby-remark-copy-linked-files": "^3.0.0",
"gatsby-remark-images": "^4.0.0",
"gatsby-remark-relative-images": "^0.2.2",
"gatsby-source-filesystem": "^3.0.0",
"gatsby-transformer-remark": "^3.0.0",
"gatsby-transformer-sharp": "^3.0.0",
"lodash": "^4.17.11",
"lodash-webpack-plugin": "^0.11.5",
"netlify-cms-app": "2.11.32",
"netlify-cms-media-library-cloudinary": "^1.3.2",
"netlify-cms-media-library-uploadcare": "^0.5.2",
"parcel-bundler": "^1.12.3",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-device-detect": "^1.9.10",
"react-dom": "^16.14.0",
"react-helmet": "^5.2.0",
"react-slick": "^0.25.2",
"showdown": "^1.9.0",
"slick-carousel": "^1.8.1",
"uuid": "^3.2.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"v": "run-p",
"clean": "gatsby clean",
"start:app": "npm run develop",
"start:lambda": "netlify-lambda serve src/lambda",
"start": "run-p start:**",
"build:app": "yarn run clean && gatsby build",
"build:lambda": "netlify-lambda build src/lambda",
"build": "run-p build:**",
"develop": "yarn run clean && gatsby develop",
"serve": "gatsby serve",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"{gatsby-*.js,src/**/*.js}\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"http-proxy-middleware": "^0.19.1",
"netlify-lambda": "^1.4.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.3",
"sass": "^1.57.1"
}
}