-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "got-twitter-stream",
"version": "1.0.0",
"description": "A react app that shows a real time twitter stream for #GameofThrones",
"main": "app.js",
"scripts": {
"watch": "watchify app.js -o public/js/bundle.js -v",
"browserify": "browserify app.js | uglifyjs > public/js/bundle.js",
"build": "npm run browserify",
"start": "npm run watch && nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azwreith/got-twitter-stream.git"
},
"author": "Ujjwal Arora <[email protected]> (http://ujjwalarora.xyz)",
"license": "MIT",
"bugs": {
"url": "https://github.com/azwreith/got-twitter-stream/issues"
},
"homepage": "https://github.com/azwreith/got-twitter-stream#readme",
"dependencies": {
"dotenv": "^2.0.0",
"express": "~4.9.7",
"express-handlebars": "~1.1.0",
"mongoose": "~4.5.3",
"node-jsx": "~0.11.0",
"ntwitter": "^0.5.0",
"react": "~0.11.2",
"socket.io": "^1.1.0"
},
"devDependencies": {
"browserify": "~6.0.3",
"nodemon": "^1.2.1",
"reactify": "~0.14.0",
"uglify-js": "~2.4.15",
"watchify": "~2.0.0"
},
"browserify": {
"transform": [
"reactify"
]
}
}