-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.33 KB
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
{
"name": "facecheck",
"version": "1.0.0",
"description": "A facial validation service for KYC (Know Your Customer) processes",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"download-models": "ts-node src/downloadModels.ts",
"build:css": "tailwindcss -i ./public/tailwind.css -o ./public/css/tailwind.css",
"watch:css": "tailwindcss -i ./public/tailwind.css -o ./public/css/tailwind.css --watch",
"dev:full": "concurrently \"npm run dev\" \"npm run watch:css\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"face",
"recognition",
"kyc",
"validation"
],
"author": "Darlan Jr. <kelgaxd@gmail.com>",
"license": "MIT",
"dependencies": {
"@napi-rs/canvas": "^0.1.70",
"@tensorflow/tfjs-node": "^4.22.0",
"@vladmandic/face-api": "^1.7.15",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"file-type": "^20.4.1",
"multer": "1.4.5-lts.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/multer": "^1.4.12",
"@types/node": "^20.17.30",
"autoprefixer": "^10.4.21",
"concurrently": "^9.1.2",
"nodemon": "^3.1.9",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}