1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-19 05:09:41 +02:00
codex.docs/package.json

98 lines
3.3 KiB
JSON
Raw Normal View History

2018-08-10 19:25:29 +03:00
{
"name": "codex.docs",
"license": "UNLICENSED",
2019-03-08 15:38:22 +03:00
"bin": {
"generatePassword": "bin/generatePassword.js"
},
2018-08-10 19:25:29 +03:00
"scripts": {
"start": "cross-env NODE_ENV=production nodemon ./bin/www",
"start:dev": "cross-env NODE_ENV=development nodemon ./bin/www",
"test": "cross-env NODE_ENV=testing mocha --recursive ./test",
"lint": "eslint --fix --cache ./src/**/*.js",
2019-03-08 15:38:22 +03:00
"build": "webpack ./src/frontend/js/app.js --o='./public/dist/[name].bundle.js' --output-library=Docs --output-public-path=/dist/ -p --mode=production",
"build:dev": "webpack ./src/frontend/js/app.js --o='./public/dist/[name].bundle.js' --output-library=Docs --output-public-path=/dist/ -p --mode=development --watch",
"precommit": "yarn lint && yarn test --exit",
"generatePassword": "node ./generatePassword.js",
"editor-upgrade": "yarn add -D @editorjs/{editorjs,header,code,delimiter,list,image,table,inline-code,marker,warning}@latest"
2018-08-10 19:25:29 +03:00
},
"dependencies": {
"bcrypt": "^3.0.3",
"commander": "^2.19.0",
2018-08-10 19:25:29 +03:00
"cookie-parser": "~1.4.3",
"cross-env": "^5.2.0",
"csurf": "^1.9.0",
"debug": "~4.1.0",
"dotenv": "^6.2.0",
2018-08-10 19:25:29 +03:00
"express": "~4.16.0",
"file-type": "^10.7.1",
"http-errors": "~1.7.1",
"jsonwebtoken": "^8.4.0",
"mime": "^2.4.0",
"mkdirp": "^0.5.1",
2018-08-10 19:25:29 +03:00
"morgan": "~1.9.0",
"multer": "^1.3.1",
"nedb": "^1.8.0",
"node-fetch": "^2.3.0",
"nodemon": "^1.18.3",
"twig": "~1.12.0",
"uuid4": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.1.0",
"@codexteam/misprints": "^1.0.0",
2019-04-01 18:08:44 +03:00
"@editorjs/code": "^2.4.1",
2019-03-08 15:38:22 +03:00
"@editorjs/delimiter": "^1.1.0",
2019-04-07 14:29:20 +03:00
"@editorjs/editorjs": "^2.12.4",
2019-03-31 00:08:57 +03:00
"@editorjs/header": "^2.2.3",
2019-04-01 18:08:44 +03:00
"@editorjs/image": "^2.2.0",
2019-03-08 15:38:22 +03:00
"@editorjs/inline-code": "^1.3.0",
2019-04-07 14:29:20 +03:00
"@editorjs/list": "^1.3.3",
2019-03-08 15:38:22 +03:00
"@editorjs/marker": "^1.2.0",
2019-03-12 17:24:20 +03:00
"@editorjs/table": "^1.2.0",
"@editorjs/warning": "^1.1.0",
"autoprefixer": "^9.1.3",
"babel": "^6.23.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.2",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"css-loader": "^1.0.0",
"cssnano": "^4.1.0",
"eslint": "^5.3.0",
"eslint-config-codex": "github:codex-team/eslint-config",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-standard": "^4.0.0",
"highlight.js": "^9.13.1",
"husky": "^1.1.2",
"mini-css-extract-plugin": "^0.4.3",
"mocha": "^5.2.0",
"mocha-sinon": "^2.1.0",
"module-dispatcher": "^2.0.0",
"normalize.css": "^8.0.1",
"nyc": "^13.1.0",
"postcss": "^7.0.2",
"postcss-apply": "^0.11.0",
"postcss-color-hex-alpha": "^5.0.2",
"postcss-color-mod-function": "^3.0.3",
"postcss-custom-media": "^7.0.7",
"postcss-custom-properties": "^8.0.8",
"postcss-custom-selectors": "^5.1.2",
"postcss-font-family-system-ui": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-media-minmax": "^4.0.0",
"postcss-nested": "^4.1.0",
"postcss-nested-ancestors": "^2.0.0",
"postcss-nesting": "^7.0.0",
"postcss-smart-import": "^0.7.6",
"rimraf": "^2.6.3",
"sinon": "^7.0.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
2018-08-10 19:25:29 +03:00
}
}