-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.55 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
{
"name": "smoothielicious",
"description": "Smoothielicious website",
"version": "1.0.0",
"dependencies": {
"basscss": "^8.0.4",
"concurrently": "^3.5.1",
"dotenv": "^5.0.1",
"gatsby": "^1.9.252",
"gatsby-link": "^1.6.40",
"gatsby-plugin-netlify-cms": "^2.0.1",
"gatsby-plugin-react-helmet": "^2.0.10",
"gatsby-plugin-resolve-src": "^1.1.3",
"gatsby-plugin-sass": "^1.0.26",
"gatsby-plugin-sharp": "^1.6.42",
"gatsby-remark-images": "^1.5.61",
"gatsby-source-filesystem": "^1.5.33",
"gatsby-transformer-remark": "^1.7.40",
"gatsby-transformer-sharp": "^1.6.22",
"lodash": "^4.17.5",
"mjml": "^4.0.5",
"mongodb": "^3.0.7",
"netlify-cms": "^1.5.0",
"nodemailer": "^4.6.4",
"normalize.css": "^8.0.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-helmet": "^5.2.0"
},
"keywords": [
"gatsby",
"example",
"JAM stack",
"netlify-cms"
],
"scripts": {
"start": "concurrently 'npm run develop' 'npm run lambda-start'",
"build": "gatsby build && npm run lambda-build",
"develop": "gatsby develop",
"serve": "gatsby serve",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"{gatsby-*.js,src/**/*.js}\"",
"lambda-start": "netlify-lambda serve src/lambda -c config/webpack.lambda.js",
"lambda-build": "netlify-lambda build src/lambda -c config/webpack.lambda.js"
},
"devDependencies": {
"netlify-lambda": "^0.4.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"prettier": "^1.12.1"
}
}