-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.13 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.13 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "quora-scrapper",
"version": "1.0.0",
"description": "A Simple Quora Scrapper",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server/app.js & npm run client",
"build": "cd public && webpack --config webpack.config.prod.js",
"client": "cd public && webpack-dev-server --inline --hot --open",
"pretty": "./node_modules/.bin/prettier --single-quote --write './public/**/*.js'",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/jkvora/Quora-Scraper"
},
"keywords": [
"Quora",
"Web",
"Scrapper"
],
"author": "Jalak Vora",
"license": "ISC",
"bugs": {
"url": "https://github.com/jkvora/Quora-Scraper/issues"
},
"homepage": "https://github.com/jkvora/Quora-Scraper",
"dependencies": {
"@material-ui/core": "^3.0.1",
"@material-ui/icons": "^3.0.1",
"express": "^4.16.3",
"puppeteer": "^1.7.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-json-view": "^1.19.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"webpack": "^4.17.1"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"eslint": "^5.4.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"nodemon": "^1.18.3",
"prettier": "^1.14.2",
"react-loader": "^2.4.5",
"style-loader": "^0.22.1",
"webpack-cli": "^3.1.0",
"webpack-command": "^0.4.1",
"webpack-dev-server": "^3.1.6"
}
}