Blame view

package.json 2.79 KB
xuqi authored
1
{
毕凯 authored
2
  "name": "yohobuy-node",
xuqi authored
3
  "version": "0.0.1",
ccbikai authored
4
  "private": true,
xuqi authored
5 6 7 8 9
  "description": "A New Yohobuy Project With Express",
  "repository": {
    "type": "git",
    "url": "http://git.dev.yoho.cn/web/yohobuy-node.git"
  },
ccbikai authored
10 11 12 13
  "scripts": {
    "start": "node app.js",
    "dev": "node_modules/.bin/nodemon -e js,hbs -i public/ app.js",
    "online": "NODE_ENV=\"production\" node app.js",
毕凯 authored
14
    "debug": "DEBUG=\"express:*\" node_modules/.bin/nodemon -e js,hbs -i public/ app.js",
15
    "lint-js": "./node_modules/.bin/eslint -c .eslintrc --cache --fix .",
毕凯 authored
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
    "lint-css": "./node_modules/.bin/stylelint --config .stylelintrc public/scss/**/*.css",
    "precommit": "node lint.js",
    "test": "NODE_ENV=test ./node_modules/.bin/nyc ./node_modules/.bin/ava",
    "posttest": "./node_modules/.bin/nyc report --reporter=html"
  },
  "ava": {
    "tap": true,
    "require": [
      "babel-register"
    ],
    "babel": {
      "presets": [
        "es2015"
      ]
    }
ccbikai authored
31
  },
xuqi authored
32 33
  "license": "MIT",
  "dependencies": {
毕凯 authored
34
    "bluebird": "^3.4.0",
xuqi authored
35 36 37 38
    "body-parser": "^1.15.0",
    "cookie-parser": "^1.4.1",
    "express": "^4.13.1",
    "express-handlebars": "^3.0.0",
周奇琪 authored
39
    "influxdb-winston": "^1.0.1",
毕凯 authored
40
    "lodash": "^4.12.0",
xuqi authored
41
    "md5": "^2.1.0",
毕凯 authored
42
    "memcached": "^2.2.2",
毕凯 authored
43
    "moment": "^2.13.0",
xuqi authored
44
    "morgan": "^1.7.0",
周奇琪 authored
45
    "oneapm": "^1.2.20",
毕凯 authored
46
    "request-promise": "^3.0.0",
周奇琪 authored
47
    "serve-favicon": "^2.3.0",
毕凯 authored
48
    "uuid": "^2.0.2",
49
    "winston": "^2.2.0",
毕凯 authored
50 51 52
    "winston-daily-rotate-file": "^1.0.1",
    "yoho-connect-memcached": "^1.0.3",
    "yoho-express-session": "^1.0.2"
xuqi authored
53 54 55
  },
  "devDependencies": {
    "autoprefixer": "^6.3.6",
毕凯 authored
56 57 58
    "ava": "^0.14.0",
    "babel-preset-es2015": "^6.9.0",
    "babel-register": "^6.9.0",
毕凯 authored
59
    "eslint": "^2.10.2",
ccbikai authored
60
    "eslint-config-yoho": "^1.0.1",
xuqi authored
61 62
    "gulp": "^3.9.1",
    "gulp-cssnano": "^2.1.2",
63
    "gulp-ftp": "^1.1.0",
xuqi authored
64 65 66
    "gulp-postcss": "^6.1.0",
    "gulp-sourcemaps": "^2.0.0-alpha",
    "gulp-util": "^3.0.7",
ccbikai authored
67
    "husky": "^0.11.4",
68 69
    "mocha": "^2.4.5",
    "nodemon": "1.9.2",
毕凯 authored
70
    "nyc": "^6.4.3",
xuqi authored
71 72 73 74 75 76 77 78
    "postcss-assets": "^4.0.1",
    "postcss-cachebuster": "^0.1.2",
    "postcss-calc": "^5.2.1",
    "postcss-center": "^1.0.0",
    "postcss-clearfix": "^1.0.0",
    "postcss-crip": "^2.0.0",
    "postcss-opacity": "^3.0.0",
    "postcss-position": "^0.4.0",
毕凯 authored
79
    "postcss-pxtorem": "^3.3.1",
xuqi authored
80 81
    "postcss-short": "^1.4.0",
    "postcss-sprites": "^3.1.2",
毕凯 authored
82
    "postcss-use": "^2.0.2",
xuqi authored
83
    "precss": "^1.4.0",
84 85
    "rewire": "^2.5.1",
    "shelljs": "^0.7.0",
毕凯 authored
86
    "stylelint": "^6.4.1",
毕凯 authored
87
    "stylelint-config-yoho": "^1.2.3",
xuqi authored
88 89
    "webpack": "^1.13.0",
    "webpack-dev-server": "^1.14.1",
毕凯 authored
90
    "webpack-stream": "^3.1.0",
毕凯 authored
91 92
    "yoho-fastclick": "^1.0.6",
    "yoho-hammer": "^2.0.7",
毕凯 authored
93 94
    "yoho-handlebars": "^4.0.5",
    "yoho-jquery": "^1.9.1",
毕凯 authored
95 96
    "yoho-jquery-lazyload": "^1.9.7",
    "yoho-swiper": "^3.3.1"
xuqi authored
97 98
  }
}