-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 862 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 862 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
37
38
{
"name": "meetup-archiver",
"version": "1.0.0",
"description": "Archive Meetup.com group events to JSON using the GraphQL API",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"archive": "tsx src/index.ts",
"render": "tsx src/renderHtml.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"meetup",
"archive",
"graphql",
"api"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.5",
"dotenv": "^16.4.0",
"marked": "^12.0.2",
"sanitize-html": "^2.11.3"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@types/sanitize-html": "^2.16.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}