-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 744 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 744 Bytes
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
{
"name": "scrapey.io",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/server.js",
"start:dev": "nodemon"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"express": "^4.17.1",
"express-handlebars": "^4.0.5",
"puppeteer": "^5.0.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.18",
"@types/express": "^4.17.6",
"@types/express-handlebars": "^3.1.0",
"@types/puppeteer": "^3.0.1",
"@types/node": "^14.0.14",
"body-parser": "^1.19.0",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
}
}