forked from teamtatooine/TrypAdvisorReviewsService
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.45 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.45 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
{
"name": "trypAdvisorReviews",
"version": "1.0.0",
"description": "TrypAdvisor enables travelers to unleash the full potential of every trip. With reviews and opinions covering a vast selection of travel listings worldwide -- TrypAdvisor provides travelers with the wisdom of the crowds to help them decide where to stay, how to fly, what to do and where to eat.",
"author": "James Lee <https://github.com/blastooo>",
"license": "ISC",
"homepage": "https://github.com/teamtatooine/trypAdvisorReviews#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/teamtatooine/trypAdvisorReviews.git"
},
"bugs": {
"url": "https://github.com/teamtatooine/trypAdvisorReviews/issues",
"email": "james.k.lee4@gmail.com"
},
"main": "index.js",
"scripts": {
"react-dev": "webpack -d --watch",
"server-dev": "nodemon server/index.js",
"start": "node server/index.js",
"dev": "concurrently --kill-others \"npm run react-dev\" \"npm run server-dev\""
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"webpack": "^2.2.1"
},
"dependencies": {
"body-parser": "^1.17.2",
"concurrently": "^4.0.1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"faker": "^4.1.0",
"jquery": "^3.1.1",
"mongoose": "^4.8.6",
"nodemon": "^1.18.4",
"react": "^16.4.2",
"react-dom": "^16.4.2"
}
}