-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.61 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
{
"name": "airbnb_reviews",
"description": "> Project description",
"author": "Wei-tse Sun",
"license": "ISC",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"react-dev": "webpack -d --watch --mode production --module-bind js=babel-loader",
"bulbasaur": "node database/initializer.js",
"start": "nodemon server/index.js",
"test": "jest test/test.js",
"review-server" : "node database/initializer.js && node server/index.js"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"mongoose": "^5.5.8",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-highlight-words": "^0.16.0",
"react-promise": "^3.0.2",
"casual": "^1.6.0"
},
"devDependencies": {
"nodemon": "^1.19.0",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"file-system": "^2.2.2",
"jest": "^24.8.0",
"mongoose-auto-increment": "^5.0.1",
"style-loader": "^0.23.1",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
},
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hacker-home/Airbnb-reviews.git"
},
"bugs": {
"url": "https://github.com/hacker-home/Airbnb-reviews/issues"
},
"homepage": "https://github.com/hacker-home/Airbnb-reviews#readme"
}