mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 01:44:26 +08:00
168 lines
5.0 KiB
JSON
168 lines
5.0 KiB
JSON
{
|
|
"name": "talk",
|
|
"version": "0.0.1",
|
|
"description": "A commenting platform from The Coral Project. https://coralproject.net",
|
|
"main": "app.js",
|
|
"scripts": {
|
|
"start": "./bin/cli serve --jobs",
|
|
"dev-start": "nodemon --config .nodemon.json --exec \"./bin/cli -c .env serve --jobs\"",
|
|
"build": "NODE_ENV=production webpack -p --config webpack.config.js --bail",
|
|
"build-watch": "NODE_ENV=development webpack --config webpack.config.js --watch",
|
|
"lint": "eslint bin/* .",
|
|
"lint-fix": "eslint bin/* . --fix",
|
|
"test": "TEST_MODE=unit NODE_ENV=test mocha -R ${MOCHA_REPORTER:-spec}",
|
|
"test-cover": "TEST_MODE=unit NODE_ENV=test istanbul cover _mocha --report text --check-coverage -- -R spec",
|
|
"pree2e": "NODE_ENV=test TALK_PORT=3011 scripts/pree2e.sh",
|
|
"e2e": "NODE_ENV=test nightwatch",
|
|
"poste2e": "NODE_ENV=test scripts/poste2e.sh",
|
|
"embed-start": "NODE_ENV=development yarn build && ./bin/cli serve --jobs",
|
|
"heroku-postbuild": "yarn build"
|
|
},
|
|
"config": {
|
|
"pre-git": {
|
|
"commit-msg": [],
|
|
"pre-commit": [
|
|
"yarn lint",
|
|
"yarn test"
|
|
],
|
|
"pre-push": [
|
|
"yarn test"
|
|
],
|
|
"post-commit": [],
|
|
"post-merge": []
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/coralproject/talk.git"
|
|
},
|
|
"keywords": [
|
|
"talk",
|
|
"coral",
|
|
"coralproject",
|
|
"ask"
|
|
],
|
|
"author": "",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/coralproject/talk/issues"
|
|
},
|
|
"homepage": "https://github.com/coralproject/talk#readme",
|
|
"dependencies": {
|
|
"apollo-client": "^0.7.3",
|
|
"bcrypt": "^0.8.7",
|
|
"body-parser": "^1.15.2",
|
|
"cli-table": "^0.3.1",
|
|
"commander": "^2.9.0",
|
|
"connect-redis": "^3.1.0",
|
|
"csurf": "^1.9.0",
|
|
"dataloader": "^1.2.0",
|
|
"debug": "^2.2.0",
|
|
"dotenv": "^4.0.0",
|
|
"ejs": "^2.5.2",
|
|
"env-rewrite": "^1.0.2",
|
|
"express": "^4.14.0",
|
|
"express-session": "^1.14.2",
|
|
"graphql": "^0.8.2",
|
|
"graphql-server-express": "^0.5.0",
|
|
"graphql-tag": "^1.2.3",
|
|
"graphql-tools": "^0.9.0",
|
|
"helmet": "^3.1.0",
|
|
"inquirer": "^3.0.1",
|
|
"jsonwebtoken": "^7.1.9",
|
|
"kue": "^0.11.5",
|
|
"lodash": "^4.16.6",
|
|
"metascraper": "^1.0.6",
|
|
"minimist": "^1.2.0",
|
|
"mongoose": "^4.6.5",
|
|
"morgan": "^1.7.0",
|
|
"natural": "^0.4.0",
|
|
"nodemailer": "^2.6.4",
|
|
"parse-duration": "^0.1.1",
|
|
"passport": "^0.3.2",
|
|
"passport-facebook": "^2.1.1",
|
|
"passport-local": "^1.0.0",
|
|
"react-apollo": "^0.8.1",
|
|
"redis": "^2.6.3",
|
|
"uuid": "^2.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^6.5.2",
|
|
"babel-core": "^6.21.0",
|
|
"babel-eslint": "^7.1.0",
|
|
"babel-jest": "^15.0.0",
|
|
"babel-loader": "^6.2.7",
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
|
"babel-plugin-transform-async-to-generator": "^6.16.0",
|
|
"babel-plugin-transform-class-properties": "^6.18.0",
|
|
"babel-plugin-transform-decorators-legacy": "^1.3.4",
|
|
"babel-plugin-transform-object-assign": "^6.8.0",
|
|
"babel-plugin-transform-object-rest-spread": "^6.16.0",
|
|
"babel-plugin-transform-react-jsx": "^6.8.0",
|
|
"babel-polyfill": "^6.16.0",
|
|
"babel-preset-es2015": "^6.18.0",
|
|
"babel-preset-stage-0": "^6.16.0",
|
|
"chai": "^3.5.0",
|
|
"chai-http": "^3.0.0",
|
|
"copy-webpack-plugin": "^4.0.0",
|
|
"css-loader": "^0.25.0",
|
|
"dialog-polyfill": "^0.4.4",
|
|
"enzyme": "^2.6.0",
|
|
"eslint": "^3.12.1",
|
|
"eslint-config-postcss": "^2.0.2",
|
|
"eslint-config-standard": "^6.2.1",
|
|
"eslint-module-utils": "^2.0.0",
|
|
"eslint-plugin-flowtype": "^2.25.0",
|
|
"eslint-plugin-import": "^2.2.0",
|
|
"eslint-plugin-mocha": "^4.7.0",
|
|
"eslint-plugin-promise": "^3.3.1",
|
|
"eslint-plugin-react": "^6.6.0",
|
|
"eslint-plugin-standard": "^2.0.1",
|
|
"exports-loader": "^0.6.3",
|
|
"fetch-mock": "^5.5.0",
|
|
"hammerjs": "^2.0.8",
|
|
"ignore-styles": "^5.0.1",
|
|
"immutable": "^3.8.1",
|
|
"imports-loader": "^0.6.5",
|
|
"istanbul": "^1.1.0-alpha.1",
|
|
"jsdom": "^9.8.3",
|
|
"json-loader": "^0.5.4",
|
|
"keymaster": "^1.6.2",
|
|
"material-design-lite": "^1.2.1",
|
|
"mocha": "^3.1.2",
|
|
"mocha-junit-reporter": "^1.12.1",
|
|
"nightwatch": "^0.9.11",
|
|
"node-fetch": "^1.6.3",
|
|
"nodemon": "^1.11.0",
|
|
"postcss-loader": "^1.1.0",
|
|
"postcss-modules": "^0.5.2",
|
|
"postcss-smart-import": "^0.5.1",
|
|
"pre-git": "^3.10.0",
|
|
"precss": "^1.4.0",
|
|
"pym.js": "^1.1.1",
|
|
"react": "15.3.2",
|
|
"react-addons-test-utils": "15.3.2",
|
|
"react-dom": "15.3.2",
|
|
"react-highlight-words": "^0.6.0",
|
|
"react-linkify": "^0.1.3",
|
|
"react-mdl": "^1.7.2",
|
|
"react-mdl-selectfield": "^0.2.0",
|
|
"react-onclickoutside": "^5.7.1",
|
|
"react-redux": "^4.4.5",
|
|
"react-router": "^3.0.0",
|
|
"react-tagsinput": "^3.14.0",
|
|
"redux": "^3.6.0",
|
|
"redux-mock-store": "^1.2.1",
|
|
"redux-thunk": "^2.1.0",
|
|
"regenerator": "^0.8.46",
|
|
"selenium-standalone": "^5.11.2",
|
|
"style-loader": "^0.13.1",
|
|
"supertest": "^2.0.1",
|
|
"timeago.js": "^2.0.3",
|
|
"webpack": "^2.2.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=7.0.0"
|
|
}
|
|
}
|