-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.71 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
{
"main": "src/index.ts",
"scripts": {
"start:dev": "cross-env NODE_ENV=development tsnd --transpile-only --respawn --ignore-watch node_modules ./src/index.ts",
"build": "tsc",
"sequelize": "yarn sequelize-cli",
"migrate": "npx sequelize-cli db:migrate",
"migrate:undo": "npx sequelize-cli db:migrate:undo",
"build:docs": "apidoc -i ./dist/main/routes -o ./docs-ui/apidoc"
},
"dependencies": {
"@ifexcorp/rest-express-utils": "^1.1.2",
"@ifexcorp/rest-http-errors": "^1.0.4",
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/helmet": "^4.0.0",
"@types/redis": "^2.8.32",
"@types/validator": "^13.6.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel": "^6.23.0",
"bcrypt": "^5.0.1",
"bluebird": "^3.7.2",
"bull": "^4.0.0",
"bullmq": "^1.51.1",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"eslint-config-airbnb-base": "^14.2.1",
"express": "^4.17.1",
"express-validator": "^6.12.0",
"helmet": "^4.6.0",
"nodemailer": "^6.6.2",
"pg": "^8.7.1",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.8.0",
"sequelize-cli": "^6.2.0",
"sequelize-typescript": "^2.1.1",
"uuidv4": "^6.2.11",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bull": "^3.15.5",
"@types/bull-board": "^0.6.0",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/node": "^16.11.6",
"cross-env": "^7.0.3",
"jest": "^27.0.6",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
}
}