-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "rss-auto-post-meta-platform-system-in-typescript",
"version": "1.0.0",
"description": "Meta Platform auto post system with Gemini by fetching RSS as source practice in TypeScript",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "jest",
"test-coverage": "jest --coverage"
},
"author": "Hank Yu",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.10.2",
"@types/testing-library__jest-dom": "^5.14.9"
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-fetch": "^3.3.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}