-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.09 KB
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
{
"name": "decisionsdevelopment-github-io",
"version": "1.0.0",
"description": "DecisionsDev organization website showcasing IBM ODM projects",
"main": "index.js",
"scripts": {
"dev": "gatsby develop",
"start": "gatsby develop",
"build:repos": "node tools/build-repositories.js",
"build:videos": "node tools/extract-videos.js",
"build": "npm run build:repos && npm run build:videos && gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "gatsby build && gh-pages -d public",
"deploy:preview": "gatsby build && gh-pages -d public -r preview"
},
"keywords": [
"gatsby",
"carbon",
"ibm",
"odm",
"decision-manager"
],
"author": "IBM Corporation",
"license": "Apache-2.0",
"dependencies": {
"gatsby": "^5.13.0",
"gatsby-plugin-image": "^3.16.0",
"gatsby-plugin-sharp": "^5.16.0",
"gatsby-theme-carbon": "^4.3.36",
"gatsby-transformer-sharp": "^5.16.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"gh-pages": "^6.1.0"
}
}