-
Notifications
You must be signed in to change notification settings - Fork 141
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "isomorphic-tutorial",
"version": "0.0.0",
"description": "Tutorial app to demonstrate isomorphic JavaScript concepts.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "grunt server",
"debug": "grunt server:debug",
"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": {
"body-parser": "^1.11.0",
"director": "^1.2.7",
"express": "^4.11.2",
"handlebars": "^2.0.0",
"http-proxy": "~0.10.3",
"jquery-browserify": "~1.8.1",
"node-jsx": "^0.12.4",
"react": "^0.12.2",
"superagent": "^0.21.0",
"underscore": "^1.7.0"
},
"devDependencies": {
"browserify": "~2.35.0",
"grunt": "~0.4.1",
"grunt-browserify": "~1.2.9",
"grunt-concurrent": "~0.4.1",
"grunt-contrib-stylus": "~0.10.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-node-inspector": "~0.1.1",
"grunt-nodemon": "~0.1.1",
"load-grunt-tasks": "^3.1.0",
"reactify": "^0.15.2"
},
"browser": {
"./app/router/renderer/index.js": "./app/router/renderer/client.js"
}
}