forked from ibm-cloud-architecture/learning-cloudnative-101
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 684 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 684 Bytes
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
{
"name": "ibm-cloud-native-bootcamp",
"version": "1.0.0",
"license": "Apache-2.0",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d public",
"build": "gatsby build --prefix-paths",
"dev": "gatsby develop",
"dev:clean": "gatsby clean && gatsby develop",
"serve": "gatsby serve"
},
"dependencies": {
"gatsby": "^2.18.21",
"gatsby-plugin-google-analytics": "^2.1.32",
"gatsby-source-filesystem": "^2.1.46",
"gatsby-theme-carbon": "^1.19.0",
"gatsby-transformer-json": "^2.2.25",
"lodash": "latest",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"gh-pages": "^2.1.1"
}
}