-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
82 lines (82 loc) · 2.53 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
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
{
"name": "warframe-status",
"version": "2.3.10",
"private": true,
"repository": "https://github.com/wfcd/warframe-status.git",
"license": "Apache-2.0",
"author": "tobitenno",
"type": "module",
"scripts": {
"build": "npm run hydrate:cache",
"dev": "nodemon",
"dev:pm2": "pm2 start warframe-status.json",
"hydrate:cache": "BUILD=build WFINFO_FILTERED_ITEMS=$WFINFO_FILTERED_ITEMS WFINFO_PRICES=$WFINFO_PRICES node ./src/lib/hydrate.js",
"lint": "eslint src/ --ext .js,.mjs",
"lint:fix": "eslint src/ --fix --ext .js,.mjs",
"prepare": "husky && npx install-peerdeps @wfcd/eslint-config@latest -S",
"start": "node main.js",
"test": "cross-env HOSTNAME=localhost c8 mocha",
"update:spec": "curl --url https://docs.warframestat.us/openapi.json -G -o src/api-spec/openapi.json --silent"
},
"prettier": "@wfcd/eslint-config/prettier",
"dependencies": {
"@sentry/node": "^8.54.0",
"@wfcd/arsenal-parser": "^2.0.2",
"@wfcd/profile-parser": "^1.4.1",
"apicache": "^1.6.3",
"colors": "1.4.0",
"cors": "^2.8.5",
"cron": "^3.5.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"express-favicon-short-circuit": "^1.2.0",
"flat-cache": "^6.1.6",
"helmet": "^8.0.0",
"ip-address": "^10.0.1",
"json-fetch-cache": "^1.2.6",
"node-fetch": "^3.3.2",
"swagger-stats": "^0.99.7",
"warframe-items": "^1.1266.21",
"warframe-nexus-query": "^2.1.0",
"warframe-worldstate-data": "^2.20.0",
"warframe-worldstate-parser": "^4.3.0",
"winston": "^3.17.0",
"worldstate-emitter": "^2.2.0",
"ws": "^7.5.10"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@sentry/types": "^8.54.0",
"@types/apicache": "^1.6.7",
"@types/chai-http": "^4.2.4",
"@types/cors": "^2.8.17",
"@types/cron": "^2.4.0",
"@types/express": "^5.0.0",
"@types/flat-cache": "^2.0.2",
"@types/helmet": "4.0.0",
"@types/twitter": "^1.7.4",
"@types/ws": "^8.5.10",
"@wfcd/eslint-config": "latest",
"c8": "^10.1.3",
"chai": "^5.1.2",
"chai-http": "^5.1.1",
"cross-env": "^7.0.3",
"husky": "^9.1.7",
"install-peerdeps": "^3.0.3",
"lint-staged": "^15.4.3",
"mocha": "^11.1.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2"
},
"optionalDependencies": {
"bufferutil": "^4.0.9",
"prom-client": "^11.5.3",
"utf-8-validate": "^5.0.10"
},
"engines": {
"node": ">=18.0.0 < 19",
"npm": ">=10.0.0 < 11"
}
}