-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
37 lines (37 loc) · 950 Bytes
/
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": "starry-raindrop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"cron": "forever start src/cron.js",
"build": "tsc -p .",
"typecheck": "tsc -p . --noEmit",
"clean": "rm src/*.js",
"docker": "npm install && npm run build && docker compose up -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eramdam/starry-raindrop.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/eramdam/starry-raindrop/issues"
},
"homepage": "https://github.com/eramdam/starry-raindrop#readme",
"dependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/lodash": "^4.17.5",
"axios": "^1.7.2",
"cron": "^3.1.7",
"dotenv": "^16.4.5",
"forever": "^4.0.3",
"lodash": "^4.17.21",
"octokit": "^4.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}