This repository was archived by the owner on Nov 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
73 lines (73 loc) · 3.06 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "devdocs-theme",
"repository": {
"type": "git",
"url": "git+https://github.com/commerce-docs/devdocs-theme.git"
},
"scripts": {
"scss": "rm -rf assets/css/**.* && sass --update --style compressed --embed-source-map --source-map-urls absolute _scss/app.scss:assets/css/app.css _scss/print.scss:assets/css/print.css _scss/search.scss:assets/css/search.css",
"autoprefixer": "postcss -u autoprefixer -r assets/css/*.css --map",
"serve": "browser-sync start --server '_site' --startPath '/example/' --files '_site/assets/css/*.css, _site/assets/js/*.js'",
"build:js": "uglifyjs _js/editions.js -o assets/js/editions.min.js && uglifyjs _js/page-updated.js -o assets/js/page-updated.min.js && uglifyjs _js/search.js -o assets/js/search.min.js && uglifyjs _js/_vendor/*.js _js/_includes/*.js _js/app.js -o assets/js/app.min.js",
"build:css": "npm run scss && npm run autoprefixer",
"build:html": "bundle exec jekyll build --disable-disk-cache",
"watch:html": "nodemon -e md,html --ignore _site/ -x 'npm run build:html'",
"watch:css": "nodemon -e scss -x 'npm run build:css && cp -r assets/css/ _site/assets/css/'",
"watch:js": "nodemon --watch _js -x 'npm run build:js && cp -r assets/js/ _site/assets/js/'",
"watch:all": "npm-run-all --parallel watch:html watch:js watch:css serve",
"start": "npm run watch:all"
},
"devDependencies": {
"autoprefixer": "^10.4.2",
"loadicons": "^1.0.0",
"lodash": "^4.17.21",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^9.1.0",
"sass": "1.49.7",
"stylelint": "^15.10.1",
"stylelint-config-standard": "^24.0.0",
"stylelint-scss": "^4.1.0",
"uglify-js": "^3.15.1"
},
"dependencies": {
"@spectrum-css/actionbutton": "^1.1.4",
"@spectrum-css/actiongroup": "^1.0.15",
"@spectrum-css/asset": "^3.0.12",
"@spectrum-css/button": "^6.0.2",
"@spectrum-css/buttongroup": "^5.0.2",
"@spectrum-css/card": "^4.0.11",
"@spectrum-css/checkbox": "^3.0.13",
"@spectrum-css/clearbutton": "^1.2.1",
"@spectrum-css/dialog": "^6.0.1",
"@spectrum-css/divider": "^1.0.15",
"@spectrum-css/icon": "^3.0.13",
"@spectrum-css/inlinealert": "^4.0.2",
"@spectrum-css/label": "^2.0.10",
"@spectrum-css/link": "^3.1.13",
"@spectrum-css/menu": "^3.0.13",
"@spectrum-css/modal": "^3.0.12",
"@spectrum-css/page": "^5.0.1",
"@spectrum-css/picker": "^1.1.10",
"@spectrum-css/popover": "^5.0.3",
"@spectrum-css/quickaction": "^3.0.15",
"@spectrum-css/search": "^4.2.1",
"@spectrum-css/sidenav": "^3.0.13",
"@spectrum-css/statuslight": "^4.0.3",
"@spectrum-css/table": "^4.0.9",
"@spectrum-css/tabs": "^3.2.2",
"@spectrum-css/tags": "^3.0.3",
"@spectrum-css/textfield": "^3.1.4",
"@spectrum-css/tooltip": "^3.1.7",
"@spectrum-css/typography": "^4.0.10",
"@spectrum-css/underlay": "^2.0.21",
"@spectrum-css/vars": "^6.1.0",
"browser-sync": "^2.28.1"
},
"resolutions": {
"semver": ">=7.5.2",
"axios": " >=0.28.0"
},
"private": true
}