-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.68 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
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "dashboard-api",
"version": "5.0.0",
"private": true,
"scripts": {
"start": "npm run build && node ./dist/server.js",
"start:dev": "NODE_ENV=development NODE_CONFIG_DIR=./src/configs nodemon",
"build": "./node_modules/.bin/rimraf ./dist && babel src -d dist --copy-files",
"seeders": "NODE_CONFIG_DIR=./src/configs node_modules/.bin/sequelize db:seed:all",
"seeders:refresh": "node_modules/.bin/sequelize db:seed:undo:all",
"migrate:up": "NODE_CONFIG_DIR=./src/configs node_modules/.bin/sequelize db:migrate",
"migrate:down": "NODE_CONFIG_DIR=./src/configs node_modules/.bin/sequelize db:migrate:undo:all",
"prettier-format": "./node_modules/.bin/prettier --config .prettierrc 'src/**/*.js' --write",
"pretest": "NODE_ENV=test npm run migrate:up && NODE_ENV=test npm run seeders",
"test": "NODE_ENV=test NODE_CONFIG_DIR=./src/configs ./node_modules/.bin/jest --detectOpenHandles --forceExit"
},
"jest": {
"testEnvironment": "node",
"testRunner": "jest-jasmine2",
"testMatch": [
"**/__tests__/index.spec.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/src"
]
},
"dependencies": {
"@babel/polyfill": "^7.10.4",
"@bugsnag/js": "^7.13.3",
"@bugsnag/plugin-express": "^7.13.2",
"@elastic/elasticsearch": "^7.15.0",
"@google-cloud/pubsub": "^2.18.2",
"@hapi/joi": "^17.1.1",
"@hapi/joi-date": "^2.0.1",
"@slack/web-api": "^6.5.0",
"async": "^3.2.2",
"axios": "^0.24.0",
"body-parser": "^1.19.0",
"bullmq": "^1.53.0",
"compression": "^1.7.4",
"config": "^3.3.6",
"cookie-parser": "~1.4.6",
"cors": "^2.8.5",
"csv": "^6.0.1",
"currency-formatter": "^1.5.9",
"dayjs": "^1.10.7",
"debug": "^4.3.2",
"decimal.js": "^10.3.1",
"dotenv": "^10.0.0",
"elastic-builder": "^2.16.0",
"email-validator": "^2.0.4",
"eventemitter2": "^6.4.5",
"express": "~4.17.1",
"express-rate-limit": "^5.5.1",
"express-status-monitor": "^1.3.3",
"fancy-log": "^1.3.3",
"form-data": "^4.0.0",
"fs-extra": "^10.0.0",
"google-libphonenumber": "^3.2.25",
"helmet": "^4.6.0",
"http-errors": "^1.8.1",
"ioredis": "^4.28.0",
"ip": "^1.1.5",
"jsonwebtoken": "^8.5.1",
"liquidjs": "^9.28.5",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"morgan": "~1.10.0",
"multer": "^1.4.3",
"mysql2": "^2.3.3",
"nodemon": "^2.0.15",
"passport": "^0.5.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"password-hash-and-salt": "^0.1.4",
"pm2": "^5.1.2",
"pretty-ms": "^7.0.1",
"puppeteer": "^11.0.0",
"python-shell": "^3.0.1",
"qs": "^6.10.1",
"request": "^2.88.2",
"sequelize": "^5.22.4",
"sequelize-paginate": "^1.1.6",
"slugify": "^1.6.2",
"unirest": "^0.6.0",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/register": "^7.16.0",
"@babel/runtime": "^7.16.3",
"@types/async": "^3.2.10",
"babel-jest": "^27.3.1",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"faker": "^5.5.3",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"sequelize-cli": "^6.3.0",
"sqlite3": "^5.0.2",
"supertest": "^6.1.6"
}
}