-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "ppc-lead-scrapper",
"version": "1.0.0",
"description": "A simple PPC lead scrapper using Apollo server express and Puppetier",
"main": "./src/index.js",
"scripts": {
"start": "webpack & pm2 start ecosystem.config.js --env development",
"dev": "webpack --watch | nodemon dist/server.bundle.js",
"build": "webpack"
},
"keywords": [
"PPC",
"lead",
"scrapper"
],
"author": "Gustavo Gomez",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"apollo-server-express": "^2.8.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.4.2",
"json2xls": "^0.1.2",
"moment": "^2.24.0",
"mongoose": "^5.9.2",
"puppeteer": "^1.19.0"
},
"nodemonConfig": {
"ignore": [
"src/*"
]
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babel-loader": "^8.0.4",
"nodemon": "^1.18.9",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2"
}
}