-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
28 lines (28 loc) · 1.4 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build:metatemplate": "yarn workspace @springload/metatemplate build",
"build:release": "yarn workspace @govtnz/ds build:release",
"build:website:compile-markdown": "yarn workspace @govtnz/ds-website compile-markdown",
"build:website": "yarn workspace @govtnz/ds-website build",
"build:website:ci:validate-build": "yarn workspace @govtnz/ds-website ci:validate-build",
"build": "yarn build:metatemplate && yarn build:release && yarn build:website:compile-markdown && yarn build:website",
"serve": "yarn workspace @govtnz/ds-website serve",
"test__comment": "DEVELOPER_NOTE: The website static build tests itself see pre/post build directory scripts in pacakge govtnz website",
"sync-docs": "cp ./README.md ./packages/govtnz-ds/README.md && cp ./CONTRIBUTING.md ./packages/govtnz-ds/CONTRIBUTING.md && cp ./CHANGELOG.md ./packages/govtnz-ds/CHANGELOG.md",
"node-modules-clear": "yarn workspace @govtnz/ds node-modules-clear && yarn workspace @govtnz/ds-website node-modules-clear && rimraf ./node_modules",
"cache-clear": "yarn workspace @govtnz/ds clear-cache && yarn workspace @govtnz/ds-website clear-cache",
"test": "yarn workspace @govtnz/ds-website test"
},
"devDependencies": {
"rimraf": "^2.6.3"
},
"license": "MIT",
"dependencies": {
"json5": "^2.1.0",
"yarn": "^1.13.0"
}
}