forked from welldone-software/cf-demo-micro-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 807 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 807 Bytes
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
{
"name": "cf-reactjs-jumpstart-server",
"version": "1.0.0",
"description": "Server side of codefresh react jumpstart project",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"test": "mocha test"
},
"author": "",
"license": "MIT",
"dependencies": {
"chai": "^3.5.0",
"co": "^4.6.0",
"co-body": "^4.0.0",
"co-monk": "^1.0.0",
"debug": "^2.2.0",
"express-http-proxy": "^0.6.0",
"kcors": "^1.0.1",
"koa": "^1.1.2",
"koa-compress": "^1.0.9",
"koa-logger": "^1.3.0",
"koa-route": "^2.4.2",
"koa-router": "^5.4.0",
"koa-static": "^2.0.0",
"mongodb": "^1.4.0",
"monk": "^1.0.1"
},
"devDependencies": {
"co-mocha": "^1.1.2",
"cross-env": "^1.0.7",
"mocha": "^2.4.5",
"nodemon": "^1.9.0"
}
}