-
Notifications
You must be signed in to change notification settings - Fork 683
/
package.json
103 lines (103 loc) · 4.97 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "pwa-devdocs",
"private": true,
"version": "14.1.0",
"description": "A documentation site for Magento PWA",
"main": "gulpfile.js",
"dependencies": {
"jquery": "^3.5.0"
},
"scripts": {
"build": "npm-run-all -s build:js build:css build:reference-doc-snippets build:compatibility-table build:env-var-definition-doc build:html",
"build:compatibility-table": "node scripts/create-compatibility-table.js",
"build:css": "sass --style=compressed src/_scss/main.scss:src/builds/css/main.css",
"build:env-var-definition-doc": "node scripts/create-env-variables-docs",
"build:docs": "npm-run-all -s build:reference-doc-snippets build:compatibility-table build:env-var-definition-doc",
"build:html": "bundle exec jekyll build --source src -I",
"build:js": "webpack --config webpack.config.js",
"build:production": "npm-run-all -s clean build:js build:css build:reference-doc-snippets build:compatibility-table build:env-var-definition-doc && jekyll build --source src/ --config src/_config.yml,_config-production.yml",
"build:reference-doc-snippets": "node scripts/create-reference-docs",
"clean": "rm -fr _site && rm -fr src/.jekyll-cache && rm -fr src/_includes/auto-generated",
"deploy": "yarn build:production && ./scripts/deploy.sh",
"develop": "yarn build && node scripts/develop.js",
"fix-markdown": "node scripts/fix-markdown.js",
"lint": "node scripts/lint",
"start": "npm-run-all -s clean develop"
},
"repository": "github:magento/pwa-studio",
"author": "James Calcaben",
"license": "OSL-3.0",
"bugs": {
"url": "https://github.com/magento/pwa-studio/issues"
},
"homepage": "https://github.com/magento/pwa-studio/tree/main/packages/pwa-devdocs#readme",
"devDependencies": {
"browser-sync": "~2.26.14",
"css-loader": "^2.1.1",
"jsdoc-to-markdown": "~7.0.0",
"mdast-builder": "^1.1.1",
"npm-run-all": "^4.1.5",
"react-docgen": "^3.0.0",
"remark": "^10.0.1",
"remark-frontmatter": "^1.3.2",
"remark-lint": "^6.0.5",
"remark-lint-blockquote-indentation": "^1.0.3",
"remark-lint-code-block-style": "^1.0.3",
"remark-lint-definition-case": "^1.0.4",
"remark-lint-definition-spacing": "^1.0.4",
"remark-lint-emphasis-marker": "^1.0.3",
"remark-lint-fenced-code-flag": "^1.0.3",
"remark-lint-fenced-code-marker": "^1.0.3",
"remark-lint-file-extension": "^1.0.3",
"remark-lint-final-definition": "^1.0.3",
"remark-lint-final-newline": "^1.0.3",
"remark-lint-first-heading-level": "^1.1.4",
"remark-lint-heading-increment": "^1.0.3",
"remark-lint-heading-style": "^1.0.3",
"remark-lint-link-title-style": "^1.0.4",
"remark-lint-list-item-bullet-indent": "^1.0.3",
"remark-lint-list-item-content-indent": "^1.0.3",
"remark-lint-list-item-indent": "^1.0.4",
"remark-lint-maximum-heading-length": "^1.0.3",
"remark-lint-no-blockquote-without-marker": "^2.0.3",
"remark-lint-no-consecutive-blank-lines": "^1.0.3",
"remark-lint-no-duplicate-definitions": "^1.0.5",
"remark-lint-no-duplicate-headings-in-section": "^1.0.4",
"remark-lint-no-emphasis-as-heading": "^1.0.3",
"remark-lint-no-empty-url": "^1.0.5",
"remark-lint-no-file-name-articles": "^1.0.3",
"remark-lint-no-file-name-consecutive-dashes": "^1.0.3",
"remark-lint-no-file-name-irregular-characters": "^1.0.3",
"remark-lint-no-file-name-mixed-case": "^1.0.3",
"remark-lint-no-file-name-outer-dashes": "^1.0.4",
"remark-lint-no-heading-content-indent": "^1.0.3",
"remark-lint-no-heading-like-paragraph": "^1.0.3",
"remark-lint-no-heading-punctuation": "^1.0.3",
"remark-lint-no-inline-padding": "^1.0.4",
"remark-lint-no-literal-urls": "^1.0.3",
"remark-lint-no-missing-blank-lines": "^1.0.3",
"remark-lint-no-paragraph-content-indent": "^1.0.6",
"remark-lint-no-reference-like-url": "^1.0.4",
"remark-lint-no-shortcut-reference-image": "^1.0.3",
"remark-lint-no-shortcut-reference-link": "^1.0.4",
"remark-lint-no-tabs": "^1.0.3",
"remark-lint-no-undefined-references": "^1.1.1",
"remark-lint-no-unused-definitions": "^1.0.5",
"remark-lint-ordered-list-marker-style": "^1.0.3",
"remark-lint-rule-style": "^1.0.3",
"remark-lint-strong-marker": "^1.0.3",
"remark-lint-unordered-list-marker-style": "^1.0.3",
"remark-preset-lint-markdown-style-guide": "^2.1.3",
"sass": "^1.26.3",
"sass-loader": "^7.3.1",
"style-loader": "~2.0.0",
"to-vfile": "^5.0.3",
"vfile-reporter": "^5.1.2",
"webpack": "~5.26.3",
"webpack-cli": "~4.5.0"
},
"resolutions": {
"minimist": "^1.2.2",
"terser-webpack-plugin": "^3.1.0"
}
}