-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.95 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
{
"name": "aaplicaster_server",
"version": "1.0.0",
"description": "assignment for applicaster, server example with koa.js v2 and babel for compiling to ES5",
"main": "app.js",
"author": "shimi bar <shimi@tikalk.com>",
"license": "ISC",
"scripts": {
"app:server": "better-npm-run appserver",
"mongo:dump": "better-npm-run mongodump",
"test": "mocha ./test/test_server"
},
"betterScripts": {
"appserver": {
"command": "nodemon app.js --exec babel-node",
"env": {
"NODE_ENV": "development",
"DEBUG": "koa:*"
}
},
"mongodump": {
"command": "node mongoDB_dump/construct_db.js"
}
},
"dependencies": {
"agentkeepalive": "^2.0.3",
"assert": "^1.4.1",
"better-npm-run": "0.0.7",
"koa": "^2.0.0-alpha.3",
"koa-body": "^1.2.1",
"koa-bodyparser": "^2.0.0",
"koa-convert": "^1.2.0",
"koa-cors": "0.0.16",
"koa-mongo": "^0.5.0",
"koa-router": "^7.0.0",
"koa-static": "^2.0.0",
"moment": "^2.13.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.3.17",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.3.13",
"babel-runtime": "^6.3.19",
"better-npm-run": "0.0.7",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"codecov": "^1.0.1",
"eslint": "^2.2.0",
"eslint-config-standard": "^5.1.0",
"eslint-config-standard-react": "^2.2.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-flow-vars": "^0.2.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.1",
"mocha": "^2.5.3",
"nodemon": "^1.8.1",
"phantomjs-polyfill": "0.0.1",
"phantomjs-prebuilt": "^2.1.3",
"rimraf": "^2.5.1",
"supertest": "^1.2.0",
"yargs": "^4.0.0"
}
}