-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "finbot-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node -r tsconfig-paths/register ./dist/index.js",
"compile": "tsc",
"dev": "ts-node-dev -r tsconfig-paths/register ./src/index.ts --project ./tsconfig.json"
},
"prettier": {
"semi": true,
"printWidth": 120,
"singleQuote": true
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.9.5",
"body-parser": "^1.20.2",
"connect-redis": "^7.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"grammy": "^1.19.2",
"mathjs": "^12.0.0",
"pg": "^8.11.3",
"redis": "^4.6.10",
"reflect-metadata": "^0.1.13",
"type-graphql": "^2.0.0-beta.3",
"typeorm": "^0.3.17",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/cors": "^2.8.16",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/node": "^20.9.0",
"prettier": "^3.1.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
}
}