Blame view

package.json 3.3 KB
xuqi authored
1
{
毕凯 authored
2
  "name": "yohobuy-node",
周少峰 authored
3
  "version": "5.3.18",
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
  "scripts": {
    "start": "node app.js",
毕凯 authored
12
    "dev": "nodemon -e js,hbs -i public/ app.js",
ccbikai authored
13
    "online": "NODE_ENV=\"production\" node app.js",
毕凯 authored
14 15 16
    "debug": "DEBUG=\"express:*\" nodemon -e js,hbs -i public/ app.js",
    "lint-js": "eslint -c .eslintrc --cache --fix .",
    "lint-css": "stylelint --config .stylelintrc public/scss/**/*.css",
毕凯 authored
17
    "precommit": "node lint.js",
毕凯 authored
18 19
    "test": "NODE_ENV=test nyc ./node_modules/.bin/ava",
    "posttest": "nyc report --reporter=html"
毕凯 authored
20 21 22 23 24 25 26 27 28 29 30
  },
  "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",
李奇 authored
35
    "blueimp-file-upload": "^9.14.0",
xuqi authored
36
    "body-parser": "^1.15.0",
htoooth authored
37
    "captchapng": "0.0.1",
htoooth authored
38
    "cheerio": "^0.22.0",
39
    "client-sessions": "^0.7.0",
姜枫 authored
40
    "compression": "^1.6.2",
周少峰 authored
41
    "connect-memcached": "^0.2.0",
刘传洋 authored
42
    "connect-multiparty": "^2.0.0",
毕凯 authored
43
    "cookie-parser": "^1.4.3",
周少峰 authored
44
    "cookie-session": "^1.2.0",
xuqi authored
45
    "express": "^4.13.1",
毕凯 authored
46
    "lodash": "^4.13.1",
xuqi authored
47
    "md5": "^2.1.0",
陈轩 authored
48
    "moment": "^2.14.1",
xuqi authored
49
    "morgan": "^1.7.0",
姜枫 authored
50
    "oneapm": "^1.2.20",
毕凯 authored
51
    "passport": "^0.3.2",
姜枫 authored
52
    "passport-douban": "0.0.1",
姜枫 authored
53
    "passport-local": "^1.0.0",
姜枫 authored
54
    "passport-qq": "0.0.3",
姜枫 authored
55
    "passport-renren": "^0.1.3",
姜枫 authored
56 57
    "passport-sina": "^0.1.0",
    "passport-strategy": "1.x.x",
毕凯 authored
58
    "passport-weixin": "^0.1.0",
yyq authored
59
    "pinyin": "^2.8.0",
刘传洋 authored
60
    "request-ip": "^1.2.2",
李奇 authored
61
    "request-promise": "^3.0.0",
周奇琪 authored
62
    "serve-favicon": "^2.3.0",
毕凯 authored
63
    "uuid": "^2.0.2",
周少峰 authored
64
    "yoho-express-session": "^2.0.0",
姜枫 authored
65
    "yoho-node-lib": "0.2.5",
66
    "yoho-zookeeper": "^1.0.6"
xuqi authored
67 68 69
  },
  "devDependencies": {
    "autoprefixer": "^6.3.6",
毕凯 authored
70
    "ava": "^0.15.2",
毕凯 authored
71 72
    "babel-preset-es2015": "^6.9.0",
    "babel-register": "^6.9.0",
73
    "bootstrap": "^3.3.7",
htoooth authored
74
    "cross-env": "^1.0.8",
毕凯 authored
75
    "eslint": "^2.12.0",
ccbikai authored
76
    "eslint-config-yoho": "^1.0.1",
xuqi authored
77 78
    "gulp": "^3.9.1",
    "gulp-cssnano": "^2.1.2",
79
    "gulp-ftp": "^1.1.0",
xuqi authored
80 81 82
    "gulp-postcss": "^6.1.0",
    "gulp-sourcemaps": "^2.0.0-alpha",
    "gulp-util": "^3.0.7",
htoooth authored
83
    "handlebars-loader": "^1.4.0",
ccbikai authored
84
    "husky": "^0.11.4",
85
    "jquery-ui": "^1.12.1",
86
    "nodemon": "1.9.2",
毕凯 authored
87
    "nyc": "^6.6.1",
xuqi authored
88
    "postcss-assets": "^4.0.1",
毕凯 authored
89
    "postcss-cachebuster": "^0.1.3",
xuqi authored
90 91 92 93
    "postcss-calc": "^5.2.1",
    "postcss-center": "^1.0.0",
    "postcss-clearfix": "^1.0.0",
    "postcss-crip": "^2.0.0",
毕凯 authored
94
    "postcss-opacity": "^4.0.0",
毕凯 authored
95
    "postcss-position": "^0.5.0",
毕凯 authored
96
    "postcss-pxtorem": "^3.3.1",
xuqi authored
97 98
    "postcss-short": "^1.4.0",
    "postcss-sprites": "^3.1.2",
毕凯 authored
99
    "postcss-use": "^2.0.2",
xuqi authored
100
    "precss": "^1.4.0",
101 102
    "rewire": "^2.5.1",
    "shelljs": "^0.7.0",
毕凯 authored
103
    "stylelint": "^6.8.0",
毕凯 authored
104
    "stylelint-config-yoho": "^1.2.4",
周少峰 authored
105
    "webpack": "1.13.2",
xuqi authored
106
    "webpack-dev-server": "^1.14.1",
毕凯 authored
107
    "webpack-stream": "^3.1.0",
htoooth authored
108
    "yoho-eventproxy": "^0.3.6",
毕凯 authored
109
    "yoho-handlebars": "^4.0.5",
毕凯 authored
110
    "yoho-jquery": "^1.12.4",
htoooth authored
111
    "yoho-jquery-dotdotdot": "0.0.1",
毕凯 authored
112
    "yoho-jquery-lazyload": "^1.9.7",
刘传洋 authored
113
    "yoho-jquery-pjax": "0.0.1",
毕凯 authored
114
    "yoho-jquery-placeholder": "^2.3.1",
htoooth authored
115 116
    "yoho-jquery-qrcode": "^0.14.0",
    "yoho-slider": "0.0.2"
xuqi authored
117 118
  }
}