forked from wavemaker/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 2.3 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
43
44
45
46
47
48
49
50
51
52
{
"scripts": {
"examples": "docusaurus examples",
"start": "copy-files-from-to && concurrently \"docusaurus start\"",
"start:nw": "concurrently \"docusaurus start\" ",
"build": "copy-files-from-to && docusaurus build --out-dir build/learn/",
"publish-gh-pages": "docusaurus publish",
"write-translations": "docusaurus write-translations",
"version": "docusaurus docs:version",
"swizzle": "docusaurus swizzle",
"rename-version": "docusaurus rename-version",
"test:mdlint": "npx markdownlint ../learn",
"test:brandlint": "textlint --rule terminology ../learn/**",
"cypress:local": "cypress open",
"changedFiles": "bash changed_md_files.sh",
"cypress:prepare-prod": "npm run start:nw & npx wait-on http://localhost:3000/learn && bash changed_md_files.sh",
"cypress:prod": "cypress run --reporter mochawesome --reporter-options 'reportDir=cypress/report/mochawesome-report,overwrite=false,html=false,json=true,timestamp=mmddyyyy_HHMMss'",
"cypress:prep-report": "npx mochawesome-merge --reportDir cypress/report/mochawesome-report > cypress/report/mochawesome.json && ps -ef | grep docusaurus-start | grep -v grep | awk '{print $2}' | xargs kill -l KILL",
"cypress:e2e": "npm run cypress:prepare-prod && npm run cypress:prod && npm run cypress:prep-report"
},
"devDependencies": {
"@wavemaker.com/wm-remarkjs-theme": "git+https://github.com/wavemaker/wm-remarkjs-theme.git",
"concurrently": "5.1.0",
"copy-files-from-to": "^2.3.0",
"cypress": "^10.9.0",
"dotenv": "^8.2.0",
"markdown-to-slides": "git+https://github.com/wavemaker/markdown-to-slides.git",
"markdownlint": "^0.20.3",
"markdownlint-cli": "^0.19.0",
"mocha": "^5.2.0",
"mochawesome": "^4.1.0",
"mochawesome-merge": "^2.1.0",
"mochawesome-report-generator": "^4.1.0",
"optimist": "^0.6.1",
"remarkable-admonitions": "^0.2.2",
"textlint": "^11.6.3",
"textlint-plugin-html": "^0.2.0",
"textlint-rule-terminology": "^2.1.4",
"update": "^0.7.4",
"wait-on": "^3.3.0"
},
"dependencies": {
"@docusaurus/core": "^2.4.1",
"@docusaurus/preset-classic": "^2.4.1",
"@docusaurus/theme-mermaid": "^2.4.1",
"clsx": "^1.2.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"remark-frontmatter": "^4.0.1",
"url-parse": "^1.5.10"
}
}