-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 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
45
46
47
48
49
50
51
52
53
54
{
"name": "friends-map-plotter",
"version": "0.0.2",
"description": "Map the users position in a shared view so that they can see each other (using Google Maps).",
"main": "server.js",
"scripts": {
"start": "node server.js",
"build": "webpack -p",
"dev": "webpack -d --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"position",
"share",
"google",
"maps"
],
"author": "Anton Hedström",
"license": "MIT",
"browserslist": [
"last 2 versions"
],
"dependencies": {
"@google/maps": "^0.4.5",
"body-parser": "^1.18.2",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"googlemaps": "^1.12.0",
"jsonwebtoken": "^8.1.0",
"morgan": "^1.9.0",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-google-maps": "^9.2.2",
"react-redux": "^5.0.6",
"recompose": "^0.26.0",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"uuid": "^3.1.0",
"websocket": "^1.0.25"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"webpack": "^3.8.1"
}
}