This repository was archived by the owner on Jul 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.65 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.65 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
39
40
41
42
{
"name": "conjure-up.io",
"description": "Deplyments so easy it's almost magical.",
"scripts": {
"start": "yarn run build && yarn run serve",
"lint-nginx": "gixy nginx.conf",
"lint-scss": "stylelint _sass/**/*.scss",
"build": "yarn run build-css && yarn run build-js && yarn run build-jekyll",
"build-jekyll": "bundle exec jekyll build",
"build-css": "node-sass --include-path node_modules _sass --source-map true --output-style compressed --output css && postcss --use autoprefixer --replace css/**/*.css --no-map",
"build-js": "mkdir -p js/build/global-nav && cp node_modules/@canonical/global-nav/dist/global-nav.js js/build/global-nav",
"watch": "watch -p '_sass/**/*.scss' -c 'yarn run build'",
"serve": "bundle exec jekyll serve -P ${PORT} -H 0.0.0.0",
"test": "yarn run lint-scss",
"clean": "rm -rf node_modules yarn-error.log css js *.log *.sqlite _site/ build/ .jekyll-metadata .bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canonical-websites/conjure-up.io.git"
},
"author": "Canonical web team",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/canonical-websites/conjure-up.io/issues",
"email": "webteam@canonical.com"
},
"homepage": "https://github.com/canonical-websites/conjure-up.io#readme",
"devDependencies": {
"stylelint": "13.6.1",
"stylelint-config-standard": "20.0.0",
"stylelint-order": "4.1.0",
"vanilla-framework": "2.14.0"
},
"dependencies": {
"@canonical/global-nav": "2.4.1",
"autoprefixer": "9.8.4",
"cssnano": "4.1.10",
"node-sass": "4.14.1",
"postcss-cli": "7.1.1",
"watch-cli": "0.2.3"
}
}