-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.57 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
33
34
35
36
{
"name": "cads",
"description": "Citizens Advice Design System",
"homepage": "https://citizensadvice.github.io/cads/",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"gh-pages": "^2.0.1",
"lerna": "^3.4.3",
"node-sass": "^4.10.0",
"nodemon": "^1.18.7",
"npm-run-all": "^4.1.5"
},
"scripts": {
"clean": "npm-run-all -s clean:website clean:modules",
"build:packages": "lerna run build",
"build:website": "cd ./website/ && bundle install && bundle exec jekyll build",
"clean:packages": "lerna run clean",
"clean:website": "rm -rf ./website/_site/ && rm -rf ./website/.sass-cache/",
"clean:modules": "rm -rf ./node_modules/",
"compilecss:website": "node-sass --output-style compressed --include-path ./node_modules/ --include-path ./website/src/styles/ ./website/src/styles/docs.scss ./website/src/styles/docs.css",
"compilecss:all": "npm-run-all compilecss:website",
"modules:reset": "npm-run-all -s clean:modules fresh",
"packages:bump": "lerna version --skip-git",
"serve:website": "cd ./website/ && bundle install && bundle exec jekyll serve",
"start:website": "npm-run-all -p watchcss:all serve:website",
"watchcss:all": "nodemon --watch ./packages --watch ./website/src/styles --ext scss --exec \"npm run compilecss:all\"",
"publish:packages": "yarn build:packages && npm login && lerna publish --skip-git && lerna version --skip-git",
"publish:website": "yarn build:website && gh-pages -d ./website/_site"
},
"dependencies": {
"@citizensadvice/cads": "^1.0.0"
}
}