-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.24 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
{
"name": "upload",
"version": "1.0.0",
"description": "Upload and process files for resonate",
"main": "index.js",
"author": "Augustin Godiscal <[email protected]>",
"license": "gpl3",
"private": true,
"scripts": {
"build": "babel src -d lib",
"dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 DEBUG=koa-mount babel-node -r ./node_modules/dotenv-safe/config ./src/server.js",
"start": "node -r ./node_modules/dotenv-safe/config ./lib/server.js",
"run-all-tests": "npm-run-all test:*",
"test": "npm run test:lint src && npm run test:deps",
"test:lint": "standard src",
"test:deps": "dependency-check ./lib/*.js ./lib/**/*.js ./test/*.js --no-dev --i mysql2 --i pg --i pg-hstore --i round-to --i numbro --i decode-uri-component"
},
"dependencies": {
"@koa/router": "^9.0.1",
"ajv": "^6.12.0",
"backblaze-b2": "^0.9.12",
"bluebird": "^3.7.2",
"bull": "^4.1.1",
"bytes": "^3.1.0",
"decode-uri-component": "^0.2.0",
"dotenv-safe": "^8.2.0",
"email-templates": "^8.0.7",
"file-type": "^14.1.4",
"image-size": "^0.8.3",
"ioredis": "^4.14.1",
"keygrip": "^1.1.0",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-compress": "^3.1.0",
"koa-json-error": "^3.1.2",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-ratelimit": "^4.2.1",
"koa-roles": "^2.0.0",
"koa-session": "^5.13.1",
"music-metadata": "^7.11.4",
"mysql2": "^2.1.0",
"node-split": "^1.0.1",
"nodemailer": "^6.1.1",
"nodemailer-mailgun-transport": "^2.0.0",
"numbro": "^2.3.6",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"round-to": "^5.0.0",
"sequelize": "^6.37.1",
"shasum": "^1.0.2",
"superagent": "^5.1.0",
"swagger-client": "^3.16.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"babel-plugin-add-module-exports": "^1.0.2",
"dependency-check": "^4.1.0",
"npm-run-all": "^4.1.5",
"server-destroy": "^1.0.1",
"standard": "^16.0.4",
"supertest": "^6.0.1",
"tape": "^4.11.0"
},
"standard": {
"ignore": [
"**/lib/**"
]
}
}