forked from soygul/koan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "koan",
"version": "1.0.0",
"description": "KOAN Stack (Koa, Angular, Node, Mongo, WebSockets) for real-time full-stack JavaScript web development.",
"repository": {
"type": "git",
"url": "git://github.com/soygul/koan.git"
},
"engines": {
"node": ">=0.11.11"
},
"author": {
"name": "Teoman Soygul",
"url": "http://www.soygul.com/"
},
"scripts": {
"start": "grunt",
"test": "node --debug --harmony node_modules/grunt-cli/bin/grunt test",
"postinstall": "bower install",
"postupdate": "bower update"
},
"dependencies": {
"koa": "~0",
"koa-route": "~2",
"koa-logger": "~1",
"koa-send": "~1",
"koa-jwt": "~0",
"koa-livereload": "~0",
"co": "~3",
"co-body": "~1",
"co-mongo": "~0",
"co-request": "~0",
"lodash": "~2",
"ws": "~0",
"forever": "~0",
"bower": "~1",
"grunt-cli": "~0"
},
"devDependencies": {
"grunt-env": "~0",
"grunt-protractor-runner": "~1",
"grunt-contrib-watch": "~0",
"grunt-nodemon": "~0",
"grunt-concurrent": "~1",
"grunt-mocha-test": "~0",
"grunt-karma": "~0",
"karma-jasmine": "~0",
"karma-phantomjs-launcher": "~0",
"supertest": "~0",
"should": "~4"
}
}