-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.34 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
{
"name": "javascript-nodejs",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "NODE_ENV=production NODE_PATH=. node --harmony --harmony_generators ./bin/www",
"dev": "NODE_ENV=development DEBUG=server:* NODE_PATH=. supervisor --harmony --debug --ignore node_modules ./bin/www",
"test": "NODE_ENV=test DEBUG=server:* NODE_PATH=. supervisor --harmony --debug --ignore node_modules ./bin/www"
},
"dependencies": {
"body-parser": "*",
"co": "*",
"koa-views": "*",
"jade": "*",
"koa": "*",
"koa-bodyparser": "*",
"koa-favicon": "*",
"koa-logger": "*",
"koa-router": "*",
"koa-sess": "*",
"koa-session-mongoose": "*",
"koa-static": "*",
"lodash": "*",
"mongoose": "*",
"passport": "*",
"winston": "*"
},
"devDependencies": {
"javascript-brunch": "*",
"css-brunch": "*",
"uglify-js-brunch": "*",
"clean-css-brunch": "*",
"stylus-brunch": "*",
"autoprefixer-brunch": "*",
"supervisor": "*"
},
"engines": {
"node" : "0.11.12"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "https://github.com/iliakan/javascript-nodejs.git"
},
"author": "Ilya Kantor and other contributors listed in git repo",
"license": "CC BY-NC-SA 3.0",
"bugs": {
"url": "https://github.com/iliakan/javascript-nodejs/issues"
}
}