-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.07 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": "apod-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch --detectOpenHandles",
"dev": "ts-node-dev -r dotenv/config --respawn --transpile-only extractor/getDataByDate.ts",
"dev2": "ts-node -r dotenv/config --transpile-only extractor/getDataByDate.ts",
"update-data": "ts-node extractor/extractData.ts",
"backfill-data": "ts-node extractor/backfillData.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/async": "^3.2.12",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/luxon": "^2.0.9",
"@types/node": "^22.0.0",
"@vercel/node": "^1.12.1",
"dotenv": "^16.0.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"dependencies": {
"async": "^3.2.3",
"axios": "^0.26.0",
"cheerio": "^1.0.0-rc.10",
"lodash": "^4.17.21",
"luxon": "^2.3.0"
},
"volta": {
"node": "22.21.0",
"npm": "10.9.4"
}
}