| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- {
- "name": "crowi-plus",
- "version": "1.0.0-RC5",
- "description": "Enhanced Crowi",
- "tags": [
- "wiki",
- "communication",
- "documentation",
- "collaboration"
- ],
- "author": "Yuki Takei <yuki@weseek.co.jp>",
- "contributors": [],
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": "https://github.com/weseek/crowi-plus.git"
- },
- "bugs": {
- "url": "https://github.com/weseek/crowi-plus/issues"
- },
- "scripts": {
- "build:dev:watch": "npm run build:dev -- --watch",
- "build:dev": "npm run clean:public && webpack --config config/webpack.dev.js --progress --profile",
- "build:prod": "npm run clean:public && webpack --config config/webpack.prod.js --progress --profile --bail",
- "build": "npm run build:dev",
- "clean:public": "rimraf -- public/js",
- "clean:dll": "rimraf -- dll",
- "clean": "npm cache clean && npm run rimraf -- public/js dll",
- "generate-plugin-definitions-source": "mkdirp tmp/plugins && node bin/generate-plugin-definitions-source.js",
- "prebuild:dev": "npm run generate-plugin-definitions-source",
- "prebuild:prod": "npm run generate-plugin-definitions-source",
- "prestart": "npm run build:prod",
- "server:dev:watch": "node-dev app.js --watch",
- "server:dev": "node app.js",
- "server:prod": "node app.js --production",
- "server": "npm run server:dev:watch",
- "start": "npm run server:prod",
- "test": "mocha -r test/bootstrap.js test/**/*.js",
- "version": "node -p \"require('./package.json').version\"",
- "webpack": "webpack"
- },
- "dependencies": {
- "assets-webpack-plugin": "~3.5.1",
- "async": "~1.5.0",
- "aws-sdk": "~2.2.26",
- "axios": "0.15.x",
- "babel-core": "^6.24.0",
- "babel-loader": "^6.4.1",
- "babel-preset-es2015": "^6.24.0",
- "babel-preset-react": "^6.23.0",
- "basic-auth-connect": "~1.0.0",
- "body-parser": "~1.14.1",
- "bootstrap-sass": "~3.3.6",
- "botkit": "~0.1.1",
- "cli": "~1.0.1",
- "colors": "^1.1.2",
- "commander": "~2.9.0",
- "connect-flash": "~0.1.1",
- "connect-redis": "~2.1.0",
- "consolidate": "~0.14.0",
- "cookie-parser": "~1.3.4",
- "copy-webpack-plugin": "^4.0.0",
- "csrf": "~3.0.3",
- "css-loader": "^0.27.3",
- "debug": "~2.6.0",
- "diff": "^3.2.0",
- "diff2html": "^2.3.0",
- "elasticsearch": "^12.1.3",
- "emojify.js": "^1.1.0",
- "errorhandler": "~1.3.4",
- "express": "~4.15.2",
- "express-form": "~0.12.0",
- "express-session": "~1.15.0",
- "express-webpack-assets": "0.0.2",
- "googleapis": "=12.3.0",
- "graceful-fs": "^4.1.11",
- "highlight.js": "^9.10.0",
- "i18next": "~4.1.0",
- "i18next-express-middleware": "~1.0.2",
- "i18next-node-fs-backend": "~0.1.3",
- "i18next-sprintf-postprocessor": "~0.2.2",
- "inline-attachment": "git+https://github.com/Rovak/InlineAttachment.git#2.0.3",
- "jquery.cookie": "~1.4.1",
- "marked": "~0.3.6",
- "method-override": "~2.3.1",
- "mkdirp": "~0.5.1",
- "moment": "^2.18.0",
- "mongoose": "4.7.x",
- "mongoose-paginate": "5.0.x",
- "morgan": "^1.8.0",
- "multer": "~1.3.0",
- "node-sass": "^4.5.0",
- "nodemailer": "~2.7.0",
- "nodemailer-ses-transport": "~1.5.0",
- "optimize-js-plugin": "0.0.4",
- "react": "^15.4.2",
- "react-dom": "^15.4.2",
- "redis": "^2.7.1",
- "reveal.js": "~3.4.0",
- "rimraf": "^2.6.1",
- "sass-loader": "^6.0.3",
- "slash": "^1.0.0",
- "socket.io": "~1.7.0",
- "socket.io-client": "~1.7.0",
- "sprintf": "~0.1.5",
- "style-loader": "^0.16.1",
- "swig": "~1.4.0",
- "webpack": "~2.3.1",
- "webpack-dll-bundles-plugin": "^1.0.0-beta.5",
- "webpack-merge": "~3.0.0"
- },
- "devDependencies": {
- "chai": "^3.5.0",
- "concurrently": "^3.4.0",
- "easy-livereload": "^1.2.0",
- "mocha": "^3.2.0",
- "node-dev": "^3.1.3",
- "proxyquire": "~1.4.0",
- "sinon": "^2.1.0",
- "sinon-chai": "^2.9.0"
- },
- "engines": {
- "node": "6.x",
- "npm": "4.x"
- },
- "config": {
- "blanket": {
- "pattern": "./lib/**/*.js"
- }
- }
- }
|