-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.56 KB
/
package.json
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
45
46
{
"name": "kung-fu-lighting-backend",
"version": "0.0.1",
"description": "Everybody is kung-fu-lighting to find profiles for fighting! Backend to scrape Reddit API for video & download link pairs for archival on approval basis for catalog and provide a Rest API for search based on device compatibility",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"build:ui": "rm -rf build && cd ../kung-fu-lighting-frontend/ && npm run build && cp -r build ../Kung-Fu-Lighting-backend/",
"deploy": "flyctl deploy",
"deploy:full": "npm run build:ui && npm run deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheSylvester/Kung-Fu-Lighting-backend.git"
},
"author": "Sylvester Wong",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/TheSylvester/Kung-Fu-Lighting-backend/issues"
},
"homepage": "https://github.com/TheSylvester/Kung-Fu-Lighting-backend#readme",
"dependencies": {
"axios": "^0.26.1",
"axios-rate-limit": "^1.3.0",
"bottleneck": "^2.19.5",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"decompress": "^4.2.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"linkifyjs": "^3.0.5",
"mongoose": "^6.2.6",
"mongoose-unique-validator": "^3.0.0",
"node-cron": "^3.0.2",
"node-downloader-helper": "^2.1.0",
"urlencode": "^1.1.0",
"xml-query": "^1.5.0",
"xml-reader": "^2.4.3"
},
"devDependencies": {
"markdown-link-extractor": "^4.0.1",
"nodemon": "^2.0.15"
}
}