-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
44
45
46
47
48
49
50
{
"name": "garmin-scraper",
"version": "0.2.0",
"description": "Scrape info from Garmin",
"nodemonConfig": {
"watch": [
"src/**/*.ts"
],
"delay": "150"
},
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --exec ts-node src/index.ts",
"exec": "node lib/index.js",
"once": "npm run build && npm run exec"
},
"dependencies": {
"cli-progress": "^2.1.1",
"commander": "5.1.0",
"dotenv": "^6.2.0",
"fs-extra": "^7.0.1",
"later": "^1.2.0",
"mathjs": "^7.0.1",
"moment": "^2.26.0",
"puppeteer": "^1.12.2"
},
"devDependencies": {
"@types/cli-progress": "^1.8.1",
"@types/dotenv": "^6.1.0",
"@types/fs-extra": "^5.0.5",
"@types/later": "^1.2.6",
"@types/mathjs": "^6.0.5",
"@types/moment": "^2.13.0",
"@types/node": "^12.12.21",
"@types/puppeteer": "^1.12.1",
"nodemon": "^2.0.2",
"shelljs": "^0.8.3",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
},
"repository": {
"type": "git",
"url": "git+https://bitbucket.org/dcaslin/garmin-scraper.git"
},
"author": "Dave Caslin",
"license": "MIT",
"homepage": "https://bitbucket.org/dcaslin/garmin-scrapert#readme"
}