forked from dlyt/YCool_Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.92 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "YCool_server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"dev": "./node_modules/.bin/nodemon index.js",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-register --require babel-polyfill",
"lint": "eslint src/**/*.js",
"docs": "./node_modules/.bin/apidoc -i src/ -o docs"
},
"keywords": [
"api",
"koa",
"koa2",
"boilerplate",
"es6",
"mongoose",
"passportjs",
"apidoc"
],
"author": "XiaoWu",
"license": "MIT",
"apidoc": {
"title": "YCool--API文档",
"url": "localhost:5000"
},
"repository": {
"type": "git",
"url": "https://github.com/dlyt/YCool_Server.git"
},
"dependencies": {
"apidoc": "^0.17.5",
"babel-core": "^6.5.1",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-stage-0": "^6.5.0",
"bcrypt": "^1.0.2",
"cheerio": "^0.22.0",
"glob": "^7.0.0",
"iconv-lite": "^0.4.15",
"jsonwebtoken": "^7.1.9",
"koa": "^2.0.0-alpha.6",
"koa-bodyparser": "^3.0.0",
"koa-convert": "^1.2.0",
"koa-generic-session": "^1.10.1",
"koa-logger": "^2.0.0",
"koa-mount": "^1.3.0",
"koa-passport": "^2.0.1",
"koa-router": "^7.0.1",
"koa-static": "^2.0.0",
"mongoose": "^4.4.3",
"node-schedule": "^1.2.1",
"nodemailer": "^3.1.7",
"nodemailer-smtp-transport": "^2.7.2",
"nodemailer-wellknown": "^0.2.2",
"passport-local": "^1.0.0",
"pinyin": "^2.8.0",
"redis": "^2.7.1",
"request": "^2.79.0",
"simple-pinyin": "^3.0.2"
},
"devDependencies": {
"babel-eslint": "^6.0.2",
"babel-register": "^6.5.1",
"chai": "^3.5.0",
"eslint": "^3.4.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"mocha": "^3.0.2",
"nodemon": "^1.8.1",
"supertest": "^2.0.0"
}
}