1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-08-03 04:25:24 +02:00
codex.docs/package.json

84 lines
2.7 KiB
JSON
Raw Normal View History

2018-08-10 19:25:29 +03:00
{
"name": "codex.docs",
2018-08-10 19:25:29 +03:00
"version": "0.0.0",
"private": true,
"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",
"build": "webpack ./src/frontend/js/app.js --o='./public/dist/[name].bundle.js' --output-library=Docs --output-public-path=/dist/ -p --watch",
"precommit": "yarn lint && yarn test --exit"
2018-08-10 19:25:29 +03:00
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"body-parser": "latest",
"codex.editor": "^2.1.3",
"codex.editor.delimiter": "^1.0.2",
"codex.editor.embed": "^2.1.2",
"codex.editor.header": "^2.0.5",
"codex.editor.image": "^2.0.3",
"codex.editor.quote": "^2.1.5",
"codex.editor.raw": "^2.0.2",
2018-08-10 19:25:29 +03:00
"cookie-parser": "~1.4.3",
"debug": "~4.1.0",
"eslint-plugin-standard": "^4.0.0",
2018-08-10 19:25:29 +03:00
"express": "~4.16.0",
"http-errors": "~1.7.1",
"module-dispatcher": "^1.0.2",
2018-08-10 19:25:29 +03:00
"morgan": "~1.9.0",
"multer": "^1.3.1",
"nedb": "^1.8.0",
"nodemon": "^1.18.3",
2018-09-18 13:10:44 +03:00
"normalize.css": "^8.0.0",
"twig": "~1.12.0",
"uuid4": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.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",
"codex.editor.code": "^2.0.0",
"codex.editor.inline-code": "^1.2.0",
"codex.editor.list": "^1.2.3",
"codex.editor.marker": "^1.0.1",
"cross-env": "^5.2.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",
"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",
"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",
"sinon": "^7.0.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
2018-08-10 19:25:29 +03:00
}
}