-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "blog",
"version": "1.0.0",
"description": "Blog project",
"main": "index.js",
"scripts": {
"start": "babel src -d dist | nodemon dist/server",
"watch": "babel -w src -d dist",
"test": "mocha --compilers js:babel-core/register --require 'babel-polyfill' --require ./test/pre_test.js --recursive ./test",
"test:watch": "npm run test -- --watch"
},
"keywords": [
"blog",
"koa",
"koav2"
],
"author": "ArchNoob",
"license": "ISC",
"dependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"bcrypt-nodejs": "0.0.3",
"debug": "^2.6.0",
"es6-promise": "^4.0.5",
"form-urlencoded": "^1.5.0",
"jwt-simple": "^0.5.1",
"koa": "^2.0.0",
"koa-better-body": "^3.0.2",
"koa-compose": "^2.5.1",
"koa-convert": "^1.2.0",
"koa-passport": "^3.0.0-rc.3",
"koa-rest-router": "^1.0.0",
"mongoose": "^4.7.5",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"babel-polyfill": "^6.20.0",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"supertest": "^2.0.1"
}
}