-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 845 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 845 Bytes
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
{
"name": "fraud-prevention-system",
"version": "1.0.0",
"description": "詐騙案例儲存庫與 AI 檢測工具",
"main": "src/index.ts",
"scripts": {
"start": "node --loader ts-node/esm src/index.ts",
"dev": "ts-node-dev --transpile-only src/index.ts",
"build": "tsc",
"test": "jest"
},
"dependencies": {
"axios": "^1.7.9",
"cheerio": "^1.0.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"node-cron": "^3.0.3",
"openai": "^4.28.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"typeorm": "^0.3.20",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/node": "^20.11.16",
"nodemon": "^3.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}