-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
68 lines (68 loc) · 1.89 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
67
68
{
"name": "passport-appointment-bot",
"version": "5.1.0",
"description": "",
"author": "Karl Kihlström",
"license": "MIT",
"main": "src/index.ts",
"bin": "build/index.js",
"scripts": {
"start": "ts-node src/index",
"dev": "nodemon src/index",
"dev:mock": "nodemon src/index --mock",
"build": "npm run lint && tsc",
"package": "npm run build && pkg . && cp ./config.json ./dist",
"lint": "eslint src",
"postversion": "npm run build && npm run package"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@tsconfig/node17": "^1.0.0",
"@types/node": "^17.0.23",
"@types/node-fetch": "^2.6.1",
"@types/qrcode-terminal": "^0.12.0",
"@types/tough-cookie": "^4.0.5",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"pkg": "^5.5.2",
"prettier": "^2.5.1",
"semantic-release": "^19.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"fetch-cookie": "^2.0.3",
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.0",
"node-fetch": "^2.6.7",
"qrcode-terminal": "^0.12.0",
"tough-cookie": "^4.1.3",
"winston": "^3.6.0",
"yargs": "^17.4.0"
},
"pkg": {
"assets": [
"assets/**/*",
"public/**/*"
],
"outputPath": "dist",
"name": "passport-appointment-bot",
"targets": [
"node16-linux-arm64",
"node16-linux-x64",
"node16-macos-arm64",
"node16-macos-x64",
"node16-win-x64"
]
}
}