-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.88 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
{
"name": "coordin-eat",
"version": "1.0.0",
"description": "A mobile-first web app to ease the pain of finding the perfect spot for dinner with your geographically inconvenient friends.",
"engines": {
"node": ">= 7.0.0"
},
"main": "index.js",
"scripts": {
"build-client": "webpack",
"build-client-watch": "webpack -w",
"deploy": "git checkout -b deploy && webpack -p && git add -f public/bundle.js public/bundle.js.map && git commit --allow-empty -m 'Deploying' && git push --force heroku deploy:master && git checkout master && git branch -D deploy",
"seed": "node server/db/seed.js",
"start": "node server",
"start-dev": "npm run build-client-watch & npm run start-server",
"start-server": "NODE_ENV='development' nodemon server -e html,js,scss --ignore public",
"test": "NODE_ENV='test' DATABASE_URL='postgres://localhost:5432/coordin-eat-test' mocha ./**/*.spec.js --compilers js:babel-register"
},
"author": "Bluegrass Grief Owls capstone team, consisting of: Sam Glass, David Berger, Jackson Sui, and Forrest Weiswolf",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Bluegrass-Grief-Owls/coordin-eat"
},
"dependencies": {
"@google/maps": "^0.4.5",
"axios": "^0.15.3",
"body-parser": "^1.16.1",
"chalk": "^2.3.1",
"chance": "^1.0.13",
"connect-session-sequelize": "^4.1.0",
"express": "^4.16.2",
"express-session": "^1.15.1",
"history": "^4.6.3",
"mapbox-gl": "^0.40.1",
"mathjs": "^3.20.2",
"moment": "^2.20.1",
"morgan": "^1.9.1",
"node-fetch": "^1.7.3",
"nodemailer": "^4.6.0",
"passport": "^0.3.2",
"passport-google-oauth": "^1.0.0",
"pg": "^6.1.2",
"pg-hstore": "^2.3.2",
"prop-types": "^15.6.1",
"react": "^15.4.2",
"react-bootstrap": "^0.31.5",
"react-datepicker": "^0.55.0",
"react-dom": "^15.4.2",
"react-geolocation": "^1.0.3",
"react-mapbox-gl": "^2.8.0",
"react-mobile-datepicker": "^3.0.8",
"react-redux": "^5.0.7",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-logger": "^2.8.1",
"redux-thunk": "^2.2.0",
"sequelize": "^4.35.1",
"socket.io": "^2.0.4"
},
"devDependencies": {
"axios-mock-adapter": "^1.14.1",
"babel-core": "^6.26.3",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"css-loader": "^0.26.1",
"enzyme": "^2.8.2",
"eslint": "^4.18.1",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^0.11.2",
"mocha": "^5.2.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"react-test-renderer": "^15.6.1",
"redux-mock-store": "^1.5.1",
"sass-loader": "^6.0.0",
"style-loader": "^0.13.1",
"supertest": "^3.0.0",
"webpack": "^2.2.1"
}
}