-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.03 KB
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
{
"name": "react-isomorph",
"version": "0.0.0",
"description": "Isomorphic React Example",
"main": "app.js",
"scripts": {
"watch": "watchify app.js -o public/js/bundle.js -v",
"browserify": "browserify app.js > public/js/bundle.js",
"build": "npm run browserify ",
"start": "npm install"
},
"author": "Ken Wheeler",
"license": "MIT",
"dependencies": {
"express": "~4.9.7",
"express-handlebars": "~1.1.0",
"mongoose": "^3.8.23",
"node-jsx": "~0.11.0",
"twitter": "^1.2.0",
"react": "~0.11.2",
"socket.io": "^1.1.0",
"node-twitter": "~0.5.2"
},
"devDependencies": {
"browserify": "~6.0.3",
"nodemon": "^1.2.1",
"reactify": "~0.14.0",
"uglify-js": "~2.4.15",
"watchify": "^3.1.1",
"async": "~1.4.1",
"underscore": "~1.8.3",
"cron": "~1.0.9",
"grunt-wiredep": "~2.0.0",
"matchdep": "~0.3.0",
"grunt-react": "~0.12.2",
"grunt": "~0.4.5",
"body-parser": "~1.13.3"
},
"browserify": {
"transform": [
"reactify"
]
}
}