-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 906 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 906 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
35
36
{
"name": "nucleus",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@supabase/supabase-js": "^2.44.0",
"@types/cheerio": "^0.22.35",
"@types/color": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"axios": "^1.7.2",
"cheerio": "^1.0.0-rc.12",
"color": "^4.2.3",
"command-line-args": "^5.2.1",
"dayjs": "^1.11.11",
"lodash": "^4.17.21",
"promise-throttle-all": "^1.1.1",
"puppeteer": "^22.12.1",
"rxjs": "^7.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"winston": "^3.13.0"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.5",
"@types/node": "^20.14.9"
},
"scripts": {
"start": "bun ./src/index.ts",
"lint": "eslint . --ext .ts",
"test": "bun test"
}
}