mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-05 01:38:52 +02:00
82 lines
2.1 KiB
JSON
82 lines
2.1 KiB
JSON
{
|
|
"name": "munseo",
|
|
"version": "0.0.1",
|
|
"description": "📝⚡️ Transform your document (문서) to a website",
|
|
"main": "lib/index.js",
|
|
"bin": {
|
|
"munseo": "bin/munseo.js"
|
|
},
|
|
"scripts": {
|
|
"munseo": "node bin/munseo",
|
|
"start": "yarn munseo start website",
|
|
"build": "yarn munseo build website",
|
|
"prettier": "prettier --config .prettierrc --write \"lib/**/*.js\" \"bin/**/*.js\" \"test/**/*.js\"",
|
|
"lint": "eslint --cache \"lib/**/*.js\" \"bin/**/*.js\" \"test/**/*.js\"",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/endiliey/munseo.git"
|
|
},
|
|
"keywords": [
|
|
"blog",
|
|
"generator",
|
|
"react"
|
|
],
|
|
"author": "endiliey",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/endiliey/munseo/issues"
|
|
},
|
|
"homepage": "https://github.com/endiliey/munseo#readme",
|
|
"devDependencies": {
|
|
"eslint": "^4.19.1",
|
|
"eslint-config-airbnb": "17.0.0",
|
|
"eslint-config-prettier": "^2.9.0",
|
|
"eslint-plugin-import": "^2.12.0",
|
|
"eslint-plugin-jsx-a11y": "^6.0.3",
|
|
"eslint-plugin-react": "^7.9.1",
|
|
"jest": "^23.4.2",
|
|
"prettier": "^1.13.7"
|
|
},
|
|
"dependencies": {
|
|
"babel-core": "^6.26.3",
|
|
"babel-loader": "^7.1.5",
|
|
"babel-preset-env": "^1.7.0",
|
|
"babel-preset-react": "^6.24.1",
|
|
"chalk": "^2.4.1",
|
|
"chokidar": "^2.0.4",
|
|
"commander": "^2.16.0",
|
|
"connect-history-api-fallback": "^1.5.0",
|
|
"front-matter": "^2.3.0",
|
|
"fs-extra": "^7.0.0",
|
|
"globby": "^8.0.1",
|
|
"highlight.js": "^9.12.0",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"koa-connect": "^2.0.1",
|
|
"koa-mount": "^3.0.0",
|
|
"koa-range": "^0.3.0",
|
|
"koa-static": "^5.0.0",
|
|
"portfinder": "^1.0.13",
|
|
"prismjs": "^1.15.0",
|
|
"react": "^16.4.1",
|
|
"react-dom": "^16.4.1",
|
|
"react-router-dom": "^4.3.1",
|
|
"remarkable": "^1.7.1",
|
|
"semver": "^5.5.0",
|
|
"webpack": "^4.16.3",
|
|
"webpack-chain": "^4.8.0",
|
|
"webpack-nicelog": "^2.0.0",
|
|
"webpack-serve": "^2.0.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"jest": {
|
|
"testPathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"__fixtures__"
|
|
],
|
|
"testEnvironment": "node"
|
|
}
|
|
}
|