-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.81 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "warframe-market-analytics",
"version": "1.0.0",
"description": "A comprehensive web application for analyzing Warframe market data",
"main": "dist/server.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only server.ts",
"dev:live": "ts-node-dev --respawn --transpile-only live.ts",
"build": "tsc -p tsconfig.production.json",
"start": "node dist/server.js",
"sync_items": "ts-node sync_items.ts",
"sync_prices": "ts-node sync_prices.ts",
"sync_auctions": "ts-node sync_auctions.ts",
"sync_rivens": "ts-node sync_rivens.ts",
"sync_drops": "ts-node sync_drops.ts",
"debug:ayatan": "ts-node debug-ayatan.ts",
"test_unidici": "ts-node test-warframe-undici.ts",
"test_403": "ts-node test-403.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"test:unit": "jest --testPathIgnorePatterns=integration",
"test:integration": "jest warframe.integration.test.ts --runInBand --detectOpenHandles",
"docker:build": "docker build -t warframe-api .",
"docker:run": "docker-compose up -d",
"docker:stop": "docker-compose down",
"pm2:start": "pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop ecosystem.config.js",
"pm2:restart": "pm2 restart ecosystem.config.js",
"setup": "npm install && cd app && npm install && cd ..",
"lint": "eslint \"**/*.ts\" --ignore-pattern app --ignore-pattern node_modules --ignore-pattern dist",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"**/*.ts\"",
"format:check": "prettier --check \"**/*.ts\""
},
"keywords": [
"warframe",
"market",
"analytics",
"gaming",
"api",
"typescript",
"nodejs"
],
"author": "",
"license": "ISC",
"dependencies": {
"@types/tough-cookie": "^4.0.5",
"axios": "^1.11.0",
"axios-retry": "^4.5.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.18.2",
"express-rate-limit": "^8.5.2",
"express-recaptcha": "^5.1.0",
"express-validator": "^7.0.1",
"http2-wrapper": "^2.2.1",
"mongoose": "^6.10.0",
"proxy-agent": "^6.5.0",
"route-cache": "^0.6.1",
"socket.io": "^4.8.3",
"socks": "^2.8.6",
"socks-proxy-agent": "^8.0.1",
"tough-cookie": "^5.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.1.6",
"undici": "^7.13.0",
"user-agents": "^1.1.620"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.4.5",
"@types/route-cache": "^0.5.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"jest": "^29.7.0",
"prettier": "^3.9.5",
"ts-jest": "^29.4.5",
"ts-node-dev": "^2.0.0"
}
}