-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"name": "scraper-hackernoon",
"version": "0.0.1",
"description": "Scraper for hackernoon posts",
"main": "build/index.js",
"author": "maciejcieslar",
"license": "MIT",
"private": true,
"scripts": {
"start:dev": "nodemon -e ts --exec \"yarn run start\"",
"start:prod": "yarn run start",
"build": "rm -rf build && tsc",
"start": "yarn run build && node build/index.js",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/fs-extra-promise": "^1.0.7",
"@types/jest": "^23.3.10",
"@types/jsdom": "^12.2.1",
"@types/module-alias": "^2.0.0",
"@types/node": "^10.12.12",
"@types/puppeteer": "^1.11.1",
"@types/uuid": "^3.4.4",
"jest": "^23.6.0",
"nodemon": "^1.18.7",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.2.1"
},
"dependencies": {
"fs-extra-promise": "^1.0.1",
"jsdom": "^13.1.0",
"module-alias": "^2.1.0",
"puppeteer": "^1.11.0",
"rxjs": "^6.3.3",
"uuid": "^3.3.2"
}
}