forked from JaredHawkins/TweetGeoViz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.99 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "TweetGeoViz",
"version": "0.3.6",
"description": "Visualization tool to view tweets by location and content.",
"author": "Jared Hawkins",
"contributors": [
{
"name": "Alexey Novak",
"email": "[email protected]"
},
{
"name": "Jared Hawkins",
"email": "[email protected]"
},
{
"name": "Bill Mills",
"email": "[email protected]"
},
{
"name": "Carlos Carcamo",
"email": "[email protected]"
}
],
"main": "app.js",
"scripts": {
"server-start": "node app.js",
"server-start-dev": "./node_modules/.bin/nodemon --watch app.js --watch server/",
"test": "./node_modules/.bin/gulp test && node node_modules/mocha/bin/mocha --reporter spec test-dist/*",
"devServer": "./node_modules/.bin/webpack-dev-server -d --progress -colors --hot",
"webpackProd": "./node_modules/.bin/webpack --config webpack-production.config -p",
"webpackDev": "./node_modules/.bin/webpack -d",
"client-start": "./node_modules/.bin/gulp && npm run devServer",
"client-build-production": "./node_modules/.bin/gulp && npm run webpackProd",
"client-build-dev": "./node_modules/.bin/gulp && npm run webpackDev"
},
"repository": {
"type": "git",
"url": "https://github.com/JaredHawkins/TweetGeoViz"
},
"keywords": [
"tweets",
"map"
],
"bugs": {
"url": "https://github.com/JaredHawkins/TweetGeoViz/issues"
},
"dependencies": {
"body-parser": "1.11.0",
"bootstrap": "3.3.5",
"console-stamp": "0.2.0",
"cookie-parser": "1.3.3",
"express": "4.11.2",
"flux": "2.1.1",
"history": "1.17.0",
"isomorphic-fetch": "2.2.0",
"jquery": "2.1.4",
"lodash": "3.10.1",
"moment": "2.10.6",
"mongoose": "4.3.7",
"morgan": "1.5.1",
"node-polyglot": "1.0.0",
"node-uuid": "1.4.7",
"object-assign": "4.0.1",
"promise": "7.1.1",
"query-params": "0.0.1",
"react": "0.14.2",
"react-dom": "0.14.2",
"react-redux": "4.0.6",
"react-router": "1.0.0",
"redux": "3.0.5",
"redux-logger": "2.3.2",
"redux-simple-router": "2.0.2",
"redux-thunk": "1.0.3",
"snapjs": "1.2.1",
"toastr": "2.1.2",
"validator": "4.5.0"
},
"devDependencies": {
"autoprefixer-loader": "3.1.0",
"babel-core": "6.3.26",
"babel-loader": "6.2.1",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"chai": "3.4.1",
"css-loader": "0.23.1",
"del": "2.2.0",
"file-loader": "0.8.5",
"gulp": "3.9.0",
"gulp-babel": "6.1.1",
"json-loader": "0.5.4",
"less": "2.5.3",
"less-loader": "2.2.2",
"mocha": "2.3.4",
"node-sass": "3.4.2",
"nodemon": "1.8.1",
"run-sequence": "1.1.5",
"sass-loader": "3.1.2",
"style-loader": "0.13.0",
"url-loader": "0.5.7",
"webpack": "1.12.9",
"webpack-dev-server": "1.14.0"
},
"engines": {
"node": "0.12.x",
"npm": "1.2.32"
},
"license": "Apache-2.0"
}