Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"codemirror": "^5.36.0",
"commander": "~6.1.0",
"concurrently": "^5.0.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.0",
"dragula": "^3.7.2",
"eslint": "^7.1.0",
Expand All @@ -62,6 +63,7 @@
"file-saver": "^2.0.0",
"jszip": "^3.1.5",
"medium-editor": "^5.23.3",
"mkdirp": "^1.0.4",
"pre-commit": "1.x",
"prop-types": "^15.6.1",
"react": "^16.6.0",
Expand All @@ -72,6 +74,7 @@
"react-redux": "^7.0.2",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"rimraf": "^3.0.2",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^20.0.0"
},
Expand All @@ -88,7 +91,7 @@
"build-templates": "bisheng build -c ./site/bisheng.templates.config.js",
"build": "npm run cp-prettier && cross-env NODE_ENV=production concurrently \"npm run build-index\" \"npm run build-edit\" \"npm run build-templates\"",
"site": "npm run build",
"cp-prettier": "rm -rf _site && mkdir -p ./_site/edit && cp -r ./prettier/* ./_site/edit ",
"cp-prettier": "rimraf _site && mkdirp ./_site/edit && copyfiles ./prettier/* ./_site/edit",
"deploy": "npm run site && cp CNAME _site && bisheng gh-pages --push-only",
"lint": "npm run lint:es && npm run lint:style",
"lint:es": "eslint --fix --ext '.js,.jsx' site",
Expand Down