forked from tylerbecks/eatup
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.72 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
{
"name": "PerpetualHarmony",
"version": "2.0.0",
"description": "EatUp is a 'MeetUp.com for foodies' that allows users to connect to others who want to eat at the same restaurant. Users can view nearby events, RSVP to them, and create their own EatUp events.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server/server.js",
"dev": "webpack -d --watch",
"build": "webpack -p"
},
"repository": {
"type": "git",
"url": "https://github.com/desultoryhalibut/PerpetualHarmony.git"
},
"author": "Tabitha Blagdon, Christine Chou, Carlos Espinal, Quin Kinser",
"license": "ISC",
"bugs": {
"url": "https://github.com/desultoryhalibut/PerpetualHarmony/issues"
},
"homepage": "https://github.com/desultoryhalibut/PerpetualHarmony",
"dependencies": {
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"bcrypt": "^0.8.7",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"google-map-react": "^0.16.3",
"moment": "^2.14.1",
"morgan": "^1.7.0",
"mysql": "^2.11.1",
"node-cron": "^1.1.1",
"nodemailer": "^2.5.0",
"react": "^15.2.1",
"react-bootstrap": "^0.30.0-rc.2",
"react-bootstrap-datetimepicker": "0.0.22",
"react-dom": "^15.2.1",
"react-gmaps": "^1.5.0",
"react-google-maps": "^4.11.0",
"react-icons": "^2.2.1",
"react-pure-render": "^1.0.2",
"react-router": "^2.6.0",
"react-router-bootstrap": "^0.23.0",
"sequelize": "^3.23.4",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1"
},
"devDependencies": {
"nodemon": "^1.9.2"
},
"engines": {
"node": "6.2.2"
}
}