forked from department-of-veterans-affairs/vagov-content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
20 lines (20 loc) · 862 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "vagov-content",
"version": "0.0.1",
"description": "Content files for VA.gov",
"engines": {
"node": "10.15.3",
"yarn": "1.12.3"
},
"scripts": {
"vagov-apps:clone": "git clone --depth=1 https://github.com/department-of-veterans-affairs/vets-website ../vagov-apps",
"vagov-apps:install": "cd ../vagov-apps; yarn install --production=false; node script/drupal-aws-cache.js --fetch",
"vagov-apps:build": "INSTALL_HOOKS=no; CONTENT_DIR=${PWD}; cd ../vagov-apps; npm run build -- --content-directory=${CONTENT_DIR}/pages --entry static-pages",
"move-output": "mv ../vagov-apps/build build",
"preinstall": "npm run vagov-apps:clone && npm run vagov-apps:install && npm run vagov-apps:build && npm run move-output",
"start": "http-server build/localhost"
},
"dependencies": {
"http-server": "^0.11.1"
}
}