-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.52 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
{
"name": "ring-face-recognition",
"version": "1.7.0",
"author": "nana4rider",
"license": "ISC",
"main": "dist/index.js",
"type": "module",
"homepage": "https://github.com/nana4rider/ring-face-recognition",
"scripts": {
"dev": "tsx --env-file=.env src/index.ts",
"start": "node dist/index",
"build": "node build.js",
"lint": "tsc && eslint --max-warnings 0 && prettier . --check",
"lint:fix": "eslint --fix && prettier . --write",
"test": "jest",
"prepare": "husky",
"token": "tsx --env-file=.env fetch-refresh-token.ts"
},
"lint-staged": {
"*.ts": "npm run lint"
},
"dependencies": {
"@aws-sdk/client-rekognition": "^3.723.0",
"dayjs": "^1.11.13",
"envalid": "^8.0.0",
"fastify": "^5.2.1",
"gm": "^1.25.0",
"ring-client-api": "^13.2.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@swc/core": "^1.10.7",
"@swc/jest": "^0.2.37",
"@types/debug": "^4.1.12",
"@types/gm": "^1.25.4",
"@types/jest": "^29.5.14",
"@types/multicast-dns": "^7.2.4",
"@types/socket.io-client": "^1.4.36",
"dotenv": "^16.4.7",
"esbuild": "^0.24.2",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "^9.17.0",
"eslint-plugin-jest": "^28.10.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "3.4.2",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"type-fest": "^4.31.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}