generated from wolkeneis/wolkeneis-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.73 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
{
"name": "holz-provider",
"version": "0.3.1",
"description": "Holz Captcha Provider + Server",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/frooastside/holz.git"
},
"author": "Frooastside <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/frooastside/holz/issues"
},
"homepage": "https://holz.wolkeneis.dev/",
"engines": {
"node": "*",
"vscode": "^1.22.0",
"npm": "^8.x.x",
"pnpm": "7.x.x"
},
"main": "dist/provider.js",
"bin": {},
"scripts": {
"start": "node -r source-map-support/register dist/app.js",
"watch": "nodemon -e ts -L -w src --exec \"pnpm build && pnpm start\"",
"lint": "eslint --ext ts .",
"lint:fix": "pnpm eslint --fix --ext ts .",
"pretty": "prettier --write .",
"build": "tsc --incremental",
"clean": "rimraf dist",
"prepare": "husky install"
},
"dependencies": {
"dotenv": "^16.0.1",
"express": "^4.18.1",
"node-json-db": "^1.5.0",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-recaptcha": "^3.5.0",
"source-map-support": "^0.5.21",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.40",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"nodemon": "^2.0.16",
"prettier": "2.6.2",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"lint-staged": {
"*.{js,ts}": "eslint --ext ts --cache --fix",
"*.{js,ts,css,md,json}": "prettier --write"
}
}