-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.26 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
42
43
44
{
"name": "ao3-api",
"version": "1.1.0",
"description": "An API to scrape archiveofourown.org fanfiction metadata using NodeJS’s ExpressJS and CheerioJS. Currently it can search for archiveofourown.org works to get different metadata like author name, chapter count, word count, genre, ratings etc",
"main": "index.js",
"author": {
"name": "Arbaaz Laskar",
"email": "arzkar.dev@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/arzkar/ao3-api-js"
},
"scripts": {
"build": "npx tsc",
"start": "nodemon -q dist/index.js",
"deploy": "npm run build && npm run start",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"axios": "^1.3.6",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fetch-ao3": "^0.2.0",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.3.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^18.15.11",
"concurrently": "^8.0.1",
"nodemon": "^2.0.22",
"typescript": "^5.0.4"
}
}