-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.34 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": "express-nodejs-template-api",
"description": "API gateway template",
"version": "0.1.0",
"private": true,
"license": "MIT",
"readmeFilename": "README.md",
"author": "Vitor Viana",
"engines": {
"node": "16.6.2"
},
"scripts": {
"postinstall": "link-module-alias",
"_preinstall": "link-module-alias clean",
"link": "link-module-alias",
"fixlint": "eslint . --fix",
"lint": "eslint .",
"develop": "nodemon --exec \"node -r dotenv/config\" ./bin/www.js",
"start": "node ./bin/www.js",
"integration-test": "mocha --opts tests/integration.opts",
"unit-test": "mocha --opts tests/unit.opts",
"test": "npm run lint && npm run unit-test && npm run integration-test",
"heroku-prebuild": "node ./scripts/herokuPreBuildSourceVersion"
},
"_moduleAliases": {
"$app-middleware": "./src/app-middleware",
"$core-services": "./src/core-services",
"$routes": "./src/routes/",
"$config": "./src/config.js",
"$services": "./src/services",
"$database": "./src/database"
},
"dependencies": {
"@sendgrid/mail": "^7.4.2",
"12factor-config": "^2.0.0",
"api": "^3.3.0",
"async-redis": "^1.1.7",
"axios": "^0.21.4",
"body-parser": "^1.13.3",
"compression": "^1.6.2",
"cookie-parser": "~1.3.5",
"cors": "^2.8.4",
"debug": "~2.6.7",
"discord-oauth2": "^2.9.0",
"discord.js": "^12.5.3",
"dotenv": "^5.0.1",
"eth-sig-util": "^3.0.1",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.0.7",
"express": "~4.15.3",
"express-session": "^1.17.2",
"firstline": "^2.0.2",
"git-rev": "^0.2.1",
"googleapis": "^109.0.1",
"link-module-alias": "^1.2.0",
"login-with-twitter": "^1.2.4",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"mongoose": "^5.11.11",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"path": "^0.12.7",
"readline": "^1.3.0",
"remotelog-local": "^1.4.1",
"swagger-jsdoc": "^1.9.7",
"swagger-ui-express": "^2.0.15",
"twitter-api-v2": "^1.11.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.4.2",
"nodemon": "^1.15.1",
"proxyquire": "^2.0.1",
"sinon": "^4.4.2"
}
}