-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
41 lines (41 loc) · 1 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
{
"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.7.4",
"koa": "^2.14.1",
"koa-static": "^5.0.0",
"level": "^6.0.1",
"node-schedule": "^1.3.0",
"np-queue": "^2.0.0",
"rss": "^1.2.2",
"tracer": "^1.1.4"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/koa": "^2.13.5",
"@types/koa-static": "^4.0.2",
"@types/koa__router": "^12.0.0",
"@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.2",
"jest": "^29.7.0",
"node-network-devtools": "^1.0.19",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
}
}