-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
125 lines (125 loc) · 3.74 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
117
118
119
120
121
122
123
124
125
{
"name": "FOI",
"description": "Real-time coverage of events for journalists and activists.",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "",
"email": ""
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": ">= 6.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"build": "npm run build:main && npm run build:widget",
"build:main": "cross-env NODE_ENV=production webpack --config config/webpack/production.js",
"build:widget": "cross-env NODE_ENV=production webpack --config config/webpack/widget.js",
"test": "npm run eslint && npm run mocha",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"start": "node src/",
"mocha": "mocha test/ --recursive"
},
"dependencies": {
"axios": "^0.16.2",
"body-parser": "^1.17.2",
"compression": "^1.6.2",
"cors": "^2.8.3",
"cross-env": "^5.0.1",
"feathers": "^2.1.3",
"feathers-authentication": "^1.2.6",
"feathers-authentication-client": "^0.3.2",
"feathers-authentication-hooks": "^0.1.4",
"feathers-authentication-jwt": "^0.3.2",
"feathers-configuration": "^0.4.1",
"feathers-errors": "^2.8.1",
"feathers-hooks": "^2.0.1",
"feathers-hooks-common": "^3.5.5",
"feathers-mongodb": "^2.9.0",
"feathers-rest": "^1.7.3",
"feathers-socketio": "^2.0.0",
"feathers-telegram-bot": "^0.0.1-2",
"font-awesome": "^4.7.0",
"hammerjs": "^2.0.8",
"helmet": "^3.6.1",
"history": "^4.6.3",
"html-webpack-plugin": "^2.29.0",
"in-view": "^0.6.1",
"leaflet": "^1.1.0",
"localforage": "^1.5.0",
"localstorage-memory": "^1.0.2",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"moment": "^2.18.1",
"mongodb": "^2.2.29",
"node-telegram-bot-api": "^0.27.1",
"normalize.css": "^7.0.0",
"offline-plugin": "^4.8.3",
"passport-strategy": "^1.0.0",
"preact": "^8.2.1",
"preact-compat": "^3.16.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-emoji-render": "^0.4.0",
"react-helmet": "^5.1.3",
"react-leaflet": "^1.4.0",
"react-linkify": "^0.2.1",
"react-progressive-image-loading": "^3.0.0",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.2",
"react-router-redux": "next",
"react-swipeable": "^4.1.0",
"react-transition-group": "^2.0.2",
"redux": "^3.7.2",
"redux-persist": "^4.8.3",
"redux-promise-middleware": "^4.3.0",
"redux-thunk": "^2.2.0",
"serve-favicon": "^2.4.3",
"styled-components": "^2.1.0",
"uws": "^8.14.1",
"video.js": "^6.2.0",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"bundle-loader": "^0.5.5",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "^0.28.4",
"eslint": "^4.1.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-react": "^7.1.0",
"eventsource-polyfill": "^0.9.6",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^0.11.2",
"git-revision-webpack-plugin": "^2.5.1",
"mocha": "^3.4.2",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"rimraf": "^2.6.1",
"style-loader": "^0.18.2",
"webpack": "^3.0.0",
"webpack-bundle-analyzer": "^2.8.3",
"webpack-dev-middleware": "^1.11.0",
"webpack-hot-middleware": "^2.18.0",
"webpack-pwa-manifest": "^3.1.7"
}
}