-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"name": "sec-insiders-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch --env-file=.env src/index.ts",
"build": "tsc",
"start": "node --env-file=.env dist/index.js",
"lint": "npx eslint .",
"test": "node --import tsx --test tests/*.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@atproto/api": "^0.18.16",
"@massive.com/client-js": "^10.1.0",
"@xdevplatform/xdk": "^0.3.0",
"axios": "^1.12.1",
"better-sqlite3": "^12.2.0",
"dotenv": "^17.2.3",
"fast-xml-parser": "^5.2.5",
"puppeteer": "^25.9.0",
"uuid": "^13.0.0",
"yahoo-finance2": "^3.11.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.3.0",
"@types/uuid": "^10.0.0",
"eslint": "^9.39.2",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"tsx": "^4.20.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
}
}