-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
43
44
45
46
47
48
49
50
{
"name": "listing-reviews-proxy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server",
"start:dev": "nodemon server",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js,.jsx --ignore-pattern node_modules/ --ignore-pattern __tests__/ --ignore-pattern client/dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thefabfour/listing-reviews-proxy.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/thefabfour/listing-reviews-proxy/issues"
},
"homepage": "https://github.com/thefabfour/listing-reviews-proxy#readme",
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.0.0"
},
"eslintConfig": {
"env": {
"commonjs": true,
"es2021": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 12
},
"extends": [
"airbnb-base"
],
"rules": {}
},
"dependencies": {
"axios": "^0.21.1",
"express": "^4.17.1",
"morgan": "^1.10.0"
}
}