-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.16 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.16 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
{
"name": "drive-server",
"version": "1.1.1",
"description": "Drive Server API",
"main": "app.js",
"dependencies": {
"@sendgrid/mail": "^7.2.1",
"adm-zip": "^0.4.14",
"analytics-node": "^3.4.0-beta.3",
"async": "^3.2.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"bip39": "^3.0.2",
"body-parser": "^1.19.0",
"bytes": "^3.1.0",
"content-disposition": "^0.5.3",
"cookies": "^0.8.0",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"express-slow-down": "^1.3.1",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mariadb": "^2.5.2",
"mime": "^2.4.4",
"mime-types": "^2.1.27",
"moment": "^2.29.1",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"nconf": "^0.11.1",
"openpgp": "^4.10.8",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"prettysize": "^2.0.0",
"qrcode": "^1.4.4",
"querystring": "^0.2.1",
"request-ip": "^2.1.3",
"rimraf": "^3.0.2",
"sanitize-filename": "^1.6.3",
"sequelize": "^6.3.5",
"shortid": "^2.2.15",
"socket.io": "^3.1.0",
"speakeasy": "^2.0.0",
"sql-formatter": "^2.3.3",
"storj": "github:StorXNetwork/node-lib",
"storx-service-mailer": "github:StorXNetwork/mailer",
"stripe": "8.49.0",
"url": "^0.11.0",
"uuid": "^8.3.2",
"winston": "^3.2.1"
},
"scripts": {
"start": "pm2 start app.js --max-old-space-size=4096 --name API -i 3",
"dev": "cross-env NODE_ENV=development nodemon",
"testsuite": "cross-env NODE_ENV=test mocha test/**/*.js",
"test": "npm run lint && npm run testsuite",
"migrate": "sequelize db:migrate",
"migrate:undo": "sequelize db:migrate:undo",
"lint": "eslint ./lib/**/*.js ./app/**/*.js ./test/**/*.js",
"lint:fix": "npm run lint --fix"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"mocha": "^8.2.1",
"nodemon": "^2.0.4",
"sequelize-cli": "^6.2.0"
},
"license": "MIT"
}