-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.59 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
77
78
79
80
81
82
83
84
85
{
"name": "annotation-server",
"version": "1.0.0",
"description": "Koa2 boilerplate for annotation server",
"main": "index.js",
"scripts": {
"start": "tsc index.ts",
"dev": "./node_modules/.bin/nodemon --inspect=0.0.0.0:9229 --watch '**/*.ts' --ignore '**/*.spec.ts' --ignore 'node_modules' --exec 'ts-node' index.ts",
"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": [],
"author": "Cui Yajie <[email protected]>",
"license": "MIT",
"apidoc": {
"title": "koa2-api-boilerplate",
"url": "localhost:5000"
},
"repository": {
"type": "git",
"url": "[email protected]:cuiyajie/annotation-server.git"
},
"dependencies": {
"@koa/cors": "^2.2.1",
"@types/lodash": "^4.14.80",
"@types/node-cache": "^4.1.0",
"apidoc": "^0.16.1",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-stage-0": "^6.5.0",
"bcrypt": "^0.8.5",
"glob": "^7.0.0",
"jsonwebtoken": "^7.1.9",
"koa": "^2.0.0-alpha.6",
"koa-bodyparser": "^3.0.0",
"koa-bouncer": "^6.0.4",
"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-qs": "^2.0.0",
"koa-router": "^7.0.1",
"koa-static": "^2.0.0",
"koa2-static": "^1.0.1",
"lodash": "^4.17.4",
"mime-types": "^2.1.17",
"mongoose-paginate": "^5.0.3",
"node-cache": "^4.1.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@types/bcrypt": "^1.0.0",
"@types/glob": "^5.0.33",
"@types/jsonwebtoken": "^7.2.3",
"@types/koa": "^2.0.39",
"@types/koa-bodyparser": "^3.0.25",
"@types/koa-generic-session": "^1.0.2",
"@types/koa-logger": "^2.0.2",
"@types/koa-mount": "^2.0.18",
"@types/koa-router": "^7.0.23",
"@types/koa-static": "^3.0.1",
"@types/koa__cors": "^2.2.1",
"@types/mime-types": "^2.1.0",
"@types/mongoose": "^4.7.24",
"@types/mongoose-paginate": "^5.0.6",
"@types/node": "^8.0.47",
"babel-eslint": "^6.0.2",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"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",
"mongoose": "^4.12.5",
"nodemon": "^1.8.1",
"supertest": "^2.0.0",
"tslib": "^1.8.0"
}
}