-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 3.06 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
{
"name": "aom.js-demo",
"version": "1.0.1",
"description": "aom.js demo backend",
"main": "index.ts",
"scripts": {
"start": "NODE_PATH=./src nodemon -w ./ --exec ts-node --files scripts/development.ts",
"pm2": "NODE_PATH=./build NODE_ENV=development pm2 start ecosystem.config.js",
"prebuild": "rm -rf build/",
"build": "tsc --project tsconfig.prod.cjs.json && npm run copy-files",
"prod": "NODE_PATH=./build NODE_ENV=production pm2 start ecosystem.config.js",
"addsuperuser": "NODE_PATH=./src ts-node --files scripts/addsuperuser.ts",
"lint": "eslint . --ext .ts",
"copy-files": "cp .env build/ && cp .config.*.json build/"
},
"author": "scarych",
"license": "ISC",
"dependencies": {
"@koa/cors": "^3.1.0",
"@typegoose/typegoose": "^9.8.1",
"aom": "^1.0.0-beta.37",
"aws-sdk": "^2.1015.0",
"base-64": "^1.0.0",
"bluebird": "^3.7.2",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.2",
"class-validator-jsonschema": "^3.1.1",
"cron": "^1.8.2",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.1",
"error-stack-parser": "^2.1.4",
"fs-extra": "^10.1.0",
"got": "11.8.5",
"hash-sum": "^2.0.0",
"kafkajs": "^1.16.0",
"koa": "^2.13.4",
"koa-body": "^4.2.0",
"koa-easy-ws": "^1.3.1",
"koa-router": "^10.1.1",
"koa-send": "^5.0.1",
"koa2-ratelimit": "^0.9.1",
"koa2-swagger-ui": "^5.2.1",
"libphonenumber-js": "^1.9.44",
"lodash": "^4.17.21",
"mime": "^2.5.2",
"moment": "^2.29.1",
"mongodb": "^4.5.0",
"mongoose": "^6.0.12",
"nanoid": "^3.1.30",
"nodemailer": "^6.7.0",
"openapi3-ts": "^2.0.1",
"plural-ru": "^2.0.2",
"prompt": "^1.2.0",
"redis": "3.1.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.4.0",
"sharp": "^0.29.2",
"stripe": "^8.218.0",
"ts-toolbelt": "^9.6.0",
"tslib": "^2.3.1",
"winston": "^3.7.2",
"xlsx": "^0.17.4",
"xss": "^1.0.10"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/cron": "^1.7.3",
"@types/crypto-js": "^4.0.2",
"@types/dot": "^1.1.5",
"@types/dot-object": "^2.1.2",
"@types/fabric": "^4.5.3",
"@types/faker": "^5.5.9",
"@types/fs-extra": "^9.0.13",
"@types/got": "^9.6.12",
"@types/koa": "^2.13.4",
"@types/koa-router": "^7.4.4",
"@types/koa2-ratelimit": "^0.9.2",
"@types/lodash": "^4.14.176",
"@types/mime": "^2.0.3",
"@types/sharp": "^0.29.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"husky": "^7.0.4",
"lint-staged": "^11.2.4",
"nodemon": "^2.0.14",
"prettier": "2.4.1",
"ts-node": "^10.7.0",
"typescript": "^4.4.4"
},
"peerDependencies": {
"@types/node": "^18.6.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}