-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.01 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
{
"name": "weibo-rss",
"version": "0.3.0",
"private": true,
"scripts": {
"build": "tsc",
"start": "ts-node src/app.ts",
"serve": "node dist/app.js",
"dev": "cross-env DEBUG=1 ts-node-dev src/app.ts",
"test": "jest"
},
"dependencies": {
"@koa/router": "^12.0.0",
"axios": "^1.16.1",
"koa": "^2.16.4",
"koa-static": "^5.0.0",
"level": "^6.0.1",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"node-schedule": "^1.3.0",
"np-queue": "^2.0.0",
"rss": "^1.2.2",
"tracer": "^1.1.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/koa": "^2.15.2",
"@types/koa-static": "^4.0.2",
"@types/koa__router": "^12.0.5",
"@types/leveldown": "^4.0.2",
"@types/levelup": "^4.3.0",
"@types/node": "^14.18.36",
"@types/node-schedule": "^1.3.1",
"@types/rss": "^0.0.29",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
}
}