-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
116 lines (116 loc) · 3.29 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
110
111
112
113
114
115
116
{
"name": "TweetGeoViz",
"version": "0.5.0",
"description": "Visualization tool to view tweets by location and content.",
"author": "Jared Hawkins",
"contributors": [
{
"name": "Alexey Novak",
"email": "alexey.novak.mail@gmail.com"
},
{
"name": "Jared Hawkins",
"email": "Jared.Hawkins@childrens.harvard.edu"
},
{
"name": "Bill Mills",
"email": "mills.wj@gmail.com"
},
{
"name": "Carlos Cárcamo",
"email": "carloscarcamo.m@gmail.com"
}
],
"main": "app.js",
"scripts": {
"lint": "eslint client/src",
"test": "karma start",
"client:clean": "rimraf client/dist",
"client:dev": "webpack-dev-server -d --config webpack/hot.dev.config",
"client:build:prod": "npm run client:clean && webpack -p --progress --verbose --colors --display-error-details --config ./webpack/prod.config",
"client:build:dev": "npm run client:clean && webpack -d --progress --verbose --colors --display-error-details --config ./webpack/dev.config",
"server:clean": "rimraf server-dist",
"server:build": "npm run server:clean && node ./node_modules/babel-cli/bin/babel.js server/ -d server-dist/",
"server:start": "npm run server:build && node app.js"
},
"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",
"jquery": "2.1.4",
"material-ui": "0.14.4",
"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",
"openlayers": "3.15.1",
"promise": "7.1.1",
"query-string": "4.1.0",
"react": "0.14.8",
"react-dom": "0.14.8",
"react-redux": "4.4.0",
"react-router": "2.0.0",
"react-router-redux": "3.0.0",
"react-tap-event-plugin": "0.2.2",
"redux": "3.3.1",
"redux-thunk": "1.0.3",
"superagent": "1.8.3",
"validator": "4.5.0"
},
"devDependencies": {
"autoprefixer-loader": "3.1.0",
"babel-cli": "6.7.5",
"babel-eslint": "5.0.0",
"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",
"eslint": "2.2.0",
"eslint-config-airbnb": "6.0.2",
"eslint-plugin-react": "4.1.0",
"expect": "1.14.0",
"file-loader": "0.8.5",
"html-webpack-plugin": "2.9.0",
"json-loader": "0.5.4",
"karma": "0.13.21",
"karma-chrome-launcher": "0.2.2",
"karma-mocha": "0.2.2",
"karma-webpack": "1.7.0",
"less-loader": "2.2.2",
"mocha": "2.3.4",
"node-sass": "3.4.2",
"nodemon": "1.8.1",
"redux-immutable-state-invariant": "1.2.0",
"redux-logger": "2.3.2",
"rimraf": "2.3.4",
"sass-loader": "3.1.2",
"style-loader": "0.13.0",
"url-loader": "0.5.7",
"webpack": "1.12.6",
"webpack-dev-middleware": "1.5.1",
"webpack-dev-server": "1.14.0",
"webpack-hot-middleware": "2.7.1"
},
"engines": {
"node": "0.12.x",
"npm": "1.2.32"
},
"license": "Apache-2.0"
}