forked from dmrd/exponent-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 719 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "docs",
"version": "24.0.0",
"private": true,
"scripts": {
"start": "concurrently 'yarn run update-config-docs' 'yarn run gatsby-develop' 'yarn run nginx-dev'",
"start-no-nginx": "concurrently 'yarn run update-config-docs' 'yarn run gatsby-develop'",
"update-config-docs": "node ./scripts/update-config-docs.js",
"nginx-dev": "./scripts/build-run-nginx-dev",
"gatsby-develop": "cd gatsby && yarn run develop",
"postinstall": "cd gatsby && yarn",
"build-builder": "rocker build --push -f deploy/docker/builder.Rockerfile .",
"update-search-index": "node ./scripts/update-search-index"
},
"devDependencies": {
"concurrently": "^3.3.0"
},
"dependencies": {}
}