add changes from v0.3

This commit is contained in:
JJ Kasper
2018-11-24 00:23:32 -06:00
parent 73f05ce4a3
commit 111cf2ed35
133 changed files with 10768 additions and 7443 deletions

View File

@@ -1,84 +1,88 @@
{
"name": "mykb",
"description": "A file system/markdown based knowledge base editor/viewer",
"version": "0.3.0",
"description": "A file system/markdown based knowledge base editor/viewer",
"main": "src",
"keywords": [
"feathers",
"react",
"next.js",
"markdown"
"react-hooks",
"markdown",
"express",
"next"
],
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"dev": "node src",
"build:clean": "rimraf .next",
"build:next": "next build",
"build:sw": "node bin/genServiceWorker.js",
"build": "run-s build:clean build:next build:sw",
"format-e": "eslint --fix .",
"format-p": "prettier --ignore-path .eslintignore --write '**/*.js'",
"format": "run-s format-p format-e",
"start": "cross-env NODE_ENV=production node src"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": {
"name": "JJ Kasper",
"email": "jj@jjsweb.site"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": ">= 8.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"format": "prettier --ignore-path .eslintignore --write '**/*.js'",
"lint": "eslint . --config .eslintrc.json",
"mocha": "cross-env NODE_ENV=production mocha test/ --recursive --exit",
"build": "next build",
"analyze": "cross-env ANALYZE=true next build",
"dev": "nodemon --ignore src/components --ignore src/redux --ignore src/styles --exec 'npm run start:dev'",
"start:dev": "node src/",
"start": "cross-env NODE_ENV=production node src/",
"test": "npm run lint && npm run build && npm run mocha",
"postinstall": "node ./genSecret.js; exit 0"
},
"repository": "https://github.com/ijjk/mykb",
"license": "MIT",
"private": false,
"dependencies": {
"@feathersjs/authentication": "^2.1.5",
"@feathersjs/authentication-jwt": "^2.0.0",
"@feathersjs/authentication-local": "^1.1.2",
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.2",
"@feathersjs/feathers": "^3.1.4",
"chokidar": "^2.0.3",
"codemirror": "^5.37.0",
"compression": "^1.7.2",
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"chokidar": "^2.0.4",
"codemirror": "^5.41.0",
"compression": "^1.7.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"cross-env": "^5.1.4",
"express-rate-limit": "^2.11.0",
"feathers-nedb": "^3.0.0",
"fs-extra": "^5.0.0",
"glamor": "^2.20.40",
"glob": "^7.1.2",
"helmet": "^3.12.0",
"if-env": "^1.0.4",
"isomorphic-unfetch": "^2.0.0",
"milligram": "^1.3.0",
"nedb": "^1.8.0",
"next": "^7.0.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-markdown": "^3.3.0",
"react-paginate": "^5.2.3",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"simple-git": "^1.92.0",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"express-rate-limit": "^3.3.2",
"fs-extra": "^7.0.1",
"helmet": "^3.15.0",
"isomorphic-unfetch": "^3.0.0",
"jsonwebtoken": "^8.3.0",
"keymirror": "^0.1.1",
"next": "^7.0.2",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"react": "^16.7.0-alpha.0",
"react-dom": "^16.7.0-alpha.0",
"react-markdown": "^4.0.3",
"react-paginate": "^6.0.0",
"react-redux": "^5.1.0",
"redux": "^4.0.1",
"redux-localstorage": "^0.4.1",
"simple-git": "^1.107.0",
"url-join": "^4.0.0",
"winston": "^2.4.1"
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.8.2",
"mocha": "^5.1.1",
"nodemon": "^1.17.3",
"prettier": "^1.13.4",
"redux-logger": "^3.0.6",
"request": "^2.85.0",
"request-promise": "^4.2.2"
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"npm-run-all": "^4.1.3",
"prettier": "^1.15.1",
"rimraf": "^2.6.2",
"server-destroy": "^1.0.1",
"sw-precache": "^5.2.1"
}
}