-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
32 lines (32 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
{
"name": "idr-website-gatsby-theme",
"version": "0.4.0",
"license": "Apache-2.0",
"scripts": {
"build": "rm -rf public && rm -rf .cache && gatsby build --prefix-paths && mv public research && mkdir design && mv research design && mkdir public && mv design public",
"clean": "gatsby clean",
"develop": "gatsby develop",
"dev": "gatsby develop",
"dev:clean": "gatsby clean && gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"deploy": "gh-pages -d public",
"deploy:staging": "yarn build && cf login --sso -a https://api.ng.bluemix.net -o IBMDesignOrg -s research && cf blue-green-deploy ibm-design-research-staging -f manifest-staging.yml && cf login --sso -a https://api.eu-de.bluemix.net -o IBMDesignOrg -s research && cf blue-green-deploy ibm-design-research-staging -f manifest-staging.yml",
"deploy:prod": "yarn build && cf login -a https://api.ng.bluemix.net -o IBMDesignOrg -s research -sso && cf blue-green-deploy ibm-design-research -f manifest-production.yml && cf login -a https://api.eu-de.bluemix.net -o IBMDesignOrg -s research -sso && cf blue-green-deploy ibm-design-research -f manifest-production.yml"
},
"repository": {
"type": "git",
"url": "https://github.com/IBM-Design/idr"
},
"dependencies": {
"@carbon/icons-react": "^10.47.0",
"@carbon/motion": "^10.29.0",
"gatsby": "^3.14.6",
"gatsby-plugin-emotion": "^4.3.15",
"gatsby-theme-carbon": "^2.3.0",
"gh-pages": "^3.2.3",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}