-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.68 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
{
"name": "sf_film_locations",
"version": "1.0.0",
"description": "An app showing where films have been filmed in SF (Uber Coding Challenge)",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "nodemon Server/server.js",
"bundle": "node_modules/.bin/webpack -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmordell/SF_Film_Locations.git"
},
"author": "Lee Mordell",
"license": "ISC",
"bugs": {
"url": "https://github.com/lmordell/SF_Film_Locations/issues"
},
"homepage": "https://github.com/lmordell/SF_Film_Locations#readme",
"dependencies": {
"axios": "^0.15.2",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"express": "^4.14.0",
"lodash": "^4.16.4",
"material-ui": "^0.16.1",
"morgan": "^1.7.0",
"pg": "^6.1.0",
"promise-throttle": "^0.3.1",
"react": "^15.3.2",
"react-autosuggest": "^7.0.1",
"react-dom": "^15.3.2",
"react-geosuggest": "^2.0.0",
"react-google-maps": "^4.11.0",
"react-icons": "^2.2.1",
"react-redux": "^4.4.5",
"react-streetview": "^1.0.1",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.6.0",
"request": "^2.75.0",
"request-promise": "^4.1.1",
"sequelize": "^3.24.5",
"webpack": "^1.13.2"
},
"devDependencies": {
"babel-jest": "^16.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"enzyme": "^2.5.1",
"jest": "^16.0.2",
"react-addons-test-utils": "^15.3.2"
}
}