-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
79 lines (79 loc) · 2.47 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "unifi-hotspot",
"version": "3.2.1",
"description": "A Unifi Captive Portal",
"main": "dist/index.js",
"scripts": {
"test": "cross-env UNIFI_SITENAME=default SECRET=secretString UNIFI_URL=https://unifi.jamiewood.io jest --detectOpenHandles",
"test:watch": "cross-env UNIFI_SITENAME=default SECRET=secretString UNIFI_URL=https://unifi.jamiewood.io jest --watchAll --detectOpenHandles",
"start": "npm run build && node dist/index.js",
"build": "tsc",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"prepare": "husky",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woodjme/unifi-hotspot.git"
},
"keywords": [
"Unifi",
"Captive Portal"
],
"author": "Jamie Wood <[email protected]> (https://jamiewood.io)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/woodjme/unifi-hotspot/issues"
},
"homepage": "https://github.com/woodjme/unifi-hotspot#readme",
"dependencies": {
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-session": "^1.18.0",
"google-auth-library": "^9.11.0",
"google-spreadsheet": "^4.1.2",
"http-cookie-agent": "^6.0.5",
"pino": "^9.2.0",
"pino-http": "^10.1.0",
"tough-cookie": "^4.1.4"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/node": "^20.14.9",
"@types/tough-cookie": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vuepress/bundler-vite": "^2.0.0-rc.13",
"@vuepress/theme-default": "^2.0.0-rc.35",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"pino-pretty": "^11.2.1",
"prettier": "^3.3.2",
"supertest": "^7.0.0",
"typescript": "^5.5.2",
"vuepress": "^2.0.0-rc.13"
},
"engines": {
"node": ">=20.0.0"
}
}