-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"name": "airbnb_reviews",
"description": "> Project description",
"author": "Wei-tse Sun",
"license": "ISC",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"react-dev": "webpack --config webpack.dev.js --watch",
"start": "node server/index.js",
"start-dev": "nodemon server/index.js",
"test": "jest test/test.js --coverage",
"build": "webpack --config webpack.prod.js"
},
"dependencies": {
"axios": "^0.21.1",
"casual": "^1.6.2",
"express": "^4.17.1",
"morgan": "^1.10.0",
"newrelic": "^6.13.0",
"pg": "^8.3.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-highlight-words": "^0.16.0",
"react-promise": "^3.0.2",
"redis": "^3.1.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"style-loader": "^0.23.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.1.3"
},
"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"
}