-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
104 lines (104 loc) · 3.14 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "api.fuelrats.com",
"version": "3.0.0",
"main": "dist/index.mjs",
"description": "",
"authors": [
"Trezy <[email protected]>",
"xlexious <[email protected]>"
],
"type": "module",
"scripts": {
"dev": "node --inspect --harmony dist/index.mjs",
"build": "rollup --config",
"test": "NODE_ENV=testing node --harmony test",
"jsdoc": "jsdoc -d static/docs/js -rgoo api",
"apidoc": "apidoc -o static/docs/api/ -i test/",
"eslint": "eslint --ext js,cjs,mjs ."
},
"license": "BSD-3",
"dependencies": {
"@log4js-node/gelf": "^1.0.2",
"@log4js-node/slack": "^1.0.0",
"@log4js-node/smtp": "^1.1.0",
"apn": "^2.2.0",
"axios": "^0.28.0",
"bcrypt": "^3.0.7",
"date-fns": "^2.8.1",
"ejs": "^3.1.5",
"eventemitter2": "^5.0.1",
"git-rev-promises": "^1.1.0",
"gulp-cli": "^2.2.0",
"i18next": "^19.0.1",
"knex": "~2.4.2",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-conditional-get": "^2.0.0",
"koa-etag": "^3.0.0",
"koa-qs": "^2.0.0",
"koa-router": "^7.4.0",
"koa-session": "^5.12.3",
"log4js": "^6.1.0",
"maxmind": "3.1.2",
"mysql": "^2.17.1",
"nanoid": "^3.1.3",
"nodemailer": "^6.9.3",
"npid": "^0.4.0",
"otplib": "^12.0.1",
"pg": "^8.5.1",
"pure-uuid": "^1.5.7",
"sequelize": "^6.32.1",
"sharp": "^0.32.6",
"sinon": "^7.5.0",
"twitter": "^1.7.1",
"ua-parser-js": "^1.0.35",
"web-push": "^3.5.0",
"workerpool": "^5.0.2",
"ws": "^7.2.0",
"yayson": "^2.0.8"
},
"engines": {
"node": "16.4.0"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/eslint-plugin": "^7.25.9",
"@babel/plugin-external-helpers": "^7.25.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-proposal-export-default-from": "^7.25.9",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-bind": "^7.25.9",
"@babel/plugin-proposal-function-sent": "^7.25.9",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-optional-catch-binding": "^7.18.6",
"@babel/plugin-proposal-throw-expressions": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/plugin-transform-strict-mode": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@fuelrats/eslint-config": "^2.3.0",
"@fuelrats/eslint-plugin": "^2.3.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"ajv": "^6.12.6",
"eslint": "^7.32.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^36.0.6",
"jest": "^24.9.0",
"jsdoc": "^3.6.7",
"jsonapi-validator": "^3.0.5",
"rollup": "^2.53.0",
"rollup-plugin-auto-external": "^2.0.0",
"sequelize-cli": "^5.5.1",
"source-map-support": "^0.5.19"
},
"jest": {
"browser": false
},
"packageManager": "[email protected]"
}