-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.01 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
{
"name": "nyscene",
"version": "1.0.0",
"description": "Local movie scene location suggestions based on user location!",
"main": "main.js",
"scripts": {
"start": "node main.js",
"start:dev": "NODE_ENV='development' npm run build-watch & NODE_ENV='development' npm run start-server",
"start-server": "nodemon --watch server main.js -e html,js,css --ignore public --ignore client",
"seed": "node seed.js",
"build-watch": "webpack -w",
"build-production": "webpack -p",
"deploy": "script/deploy"
},
"author": "Ricardo Pineda",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"chalk": "^2.4.2",
"connect-session-sequelize": "^6.0.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"history": "^4.9.0",
"morgan": "^1.9.1",
"npm-merge-driver": "^2.3.5",
"passport": "^0.4.0",
"passport-google-oauth": "^2.0.0",
"pg": "^7.11.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-geolocated": "^2.5.0",
"react-google-maps": "^9.4.5",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"react-toastify": "^5.3.1",
"recompose": "^0.30.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"request": "^2.88.0",
"sequelize": "^5.8.7"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^2.1.1",
"nodemon": "^1.19.1",
"style-loader": "^0.23.1",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ricardopineda93/nyscene.git"
},
"bugs": {
"url": "https://github.com/ricardopineda93/nyscene/issues"
},
"homepage": "https://github.com/ricardopineda93/nyscene#readme",
"keywords": [
"movies"
]
}