This repository has been archived by the owner on Aug 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
66 lines (66 loc) · 1.96 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "drivetest-ca-availabilities",
"version": "1.5.0",
"description": "See available dates for driving test on drivetest.ca",
"main": "index.js",
"repository": "https://github.com/silverAndroid/drivetest-ca-availabilities.git",
"author": "Rushil Perera <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"start": "node ./dist/cli/cli.js",
"build": "tsc",
"package": "pkg -c ./pkg.config.json -o drivetest-availabilities ./dist/cli/cliPkg.js",
"package:dev": "yarn build && yarn package",
"prepare": "husky install && ts-patch install -s"
},
"devDependencies": {
"@datorama/akita-cli": "^6.1.1",
"@types/inquirer": "^7.3.3",
"@types/node-fetch": "^2.5.8",
"@types/pino": "^6.3.8",
"@types/pino-multi-stream": "^5.1.1",
"@types/puppeteer": "^5.4.4",
"@types/semver": "^7.3.5",
"@types/tough-cookie": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"pkg": "^5.1.0",
"prettier": "2.3.2",
"ts-patch": "^2.0.1",
"typescript": "^4.4.4",
"typescript-transform-paths": "^3.3.1"
},
"dependencies": {
"@datorama/akita": "^6.2.4",
"async-sema": "^3.1.0",
"commander": "^7.2.0",
"dayjs": "^1.10.4",
"inquirer": "^8.1.2",
"node-fetch": "^2.6.1",
"pino": "^6.11.3",
"pino-multi-stream": "^5.3.0",
"pino-pretty": "^4.7.1",
"progress": "^2.0.3",
"puppeteer": "^11.0.0",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-stealth": "^2.9.0",
"rxjs": "^7.4.0",
"semver": "^7.3.5",
"tslib": "^2.3.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.ts": "eslint . --ext .ts"
},
"akitaCli": {
"basePath": "./store",
"template": "ts",
"customFolderName": "true"
}
}