-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.91 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
{
"name": "stonkx-backend",
"version": "0.4.6",
"description": "",
"license": "MIT",
"scripts": {
"dev": "tsnd --inspect --ignore-watch node_modules --respawn --transpile-only -r tsconfig-paths/register src/index.ts --watch",
"build": "tsc --project tsconfig.compile.json",
"start:prod": "cross-env NODE_ENV=production node dist/index.js",
"prettier": "prettier src/**/*.ts --write",
"typeorm": "tsed typeorm",
"release": "release-it"
},
"dependencies": {
"@tsed/ajv": "6.75.11",
"@tsed/common": "6.75.11",
"@tsed/core": "6.75.11",
"@tsed/di": "6.75.11",
"@tsed/exceptions": "6.75.11",
"@tsed/json-mapper": "6.75.11",
"@tsed/passport": "6.75.11",
"@tsed/platform-express": "6.75.11",
"@tsed/schema": "6.75.11",
"@tsed/swagger": "6.75.11",
"@tsed/typeorm": "6.75.11",
"ajv": "8.6.3",
"argon2": "0.28.2",
"axios": "0.24.0",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"cross-env": "7.0.3",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-session": "1.17.1",
"jsonwebtoken": "8.5.1",
"method-override": "3.0.0",
"mysql2": "2.3.1",
"node-binance-api": "0.12.5",
"node-cache": "^5.1.2",
"node-cron": "^3.0.0",
"passport": "0.5.0",
"passport-http": "0.3.0",
"passport-jwt": "4.0.0",
"passport-local": "1.0.0",
"pg": "8.7.1",
"sqlite3": "5.0.2",
"typeorm": "0.2.38"
},
"devDependencies": {
"@tsed/cli-plugin-eslint": "3.0.2",
"@tsed/cli-plugin-passport": "3.0.2",
"@tsed/cli-plugin-typeorm": "3.0.2",
"@types/compression": "1.7.0",
"@types/cookie-parser": "1.4.2",
"@types/cors": "2.8.10",
"@types/express": "4.17.11",
"@types/express-session": "1.17.3",
"@types/method-override": "0.0.31",
"@types/multer": "1.4.5",
"@types/node": "14.14.41",
"@types/node-cron": "^2.0.3",
"@types/passport": "1.0.6",
"@types/passport-http": "0.3.8",
"@types/passport-jwt": "3.0.5",
"@types/passport-local": "1.0.33",
"@types/supertest": "2.0.11",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"eslint": "7.25.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"prettier": "2.2.1",
"release-it": "14.6.2",
"ts-node": "9.1.1",
"ts-node-dev": "1.1.6",
"tsconfig-paths": "3.9.0",
"typescript": "4.2.4"
},
"tsed": {
"packageManager": "yarn",
"convention": "default"
},
"release-it": {
"git": {
"commit": true,
"requireCleanWorkingDir": false,
"commitMessage": "🚀RELEASE ${version}",
"push": false,
"tag": true,
"tagName": null,
"tagAnnotation": "${version}"
},
"npm": {
"publish": false
},
"hooks": {
"after:bump": "npx auto-changelog --commit-limit false -p -u --hide-credit && git add CHANGELOG.md"
}
}
}