forked from spikebrehm/isomorphic-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1008 Bytes
/
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
{
"name": "isomorphic-tutorial",
"version": "0.0.0",
"description": "Tutorial app to demonstrate isomorphic JavaScript concepts.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/spikebrehm/isomorphic-tutorial.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/spikebrehm/isomorphic-tutorial/issues"
},
"dependencies": {
"superagent": "~0.15.7",
"express": "~3.4.3",
"director": "~1.2.0",
"handlebars": "~1.0.12",
"hbsfy": "~1.0.0",
"underscore": "~1.5.2",
"http-proxy": "~0.10.3",
"jquery-browserify": "~1.8.1"
},
"devDependencies": {
"grunt": "~0.4.1",
"browserify": "~2.35.0",
"grunt-browserify": "~1.2.9",
"grunt-contrib-watch": "~0.5.3",
"grunt-nodemon": "~0.1.1",
"grunt-concurrent": "~0.4.1",
"grunt-contrib-stylus": "~0.10.0",
"grunt-node-inspector": "~0.1.1"
}
}