-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
124 lines (124 loc) · 3.74 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
118
119
120
121
122
123
124
{
"name": "gptwrapper",
"version": "1.0.0",
"description": "Wrapper to handle OpenAI API calls and access management",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "docker compose up",
"prod": "NODE_ENV=production node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm src/server/index.ts",
"dev": "NODE_ENV=development concurrently \"nodemon --exec node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm src/server/index.ts\" \"vite\"",
"tsc": "tsc",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write '*.{ts,json,css,md}'",
"build": "vite build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UniversityOfHelsinkiCS/GPTwrapper.git"
},
"author": "Miko Keskimäki",
"license": "MIT",
"bugs": {
"url": "https://github.com/UniversityOfHelsinkiCS/GPTwrapper/issues"
},
"homepage": "https://github.com/UniversityOfHelsinkiCS/GPTwrapper#readme",
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true
},
"lint-staged": {
"src/**/*.{ts,tsx}": "eslint",
"*.{ts,tsx,json,md}": "prettier --write"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-typescript": "^7.23.3",
"@eslint/js": "^9.13.0",
"@playwright/test": "^1.42.1",
"@types/cors": "^2.8.17",
"@types/eslint": "^9.0.0",
"@types/express": "^5.0.0",
"@types/lodash": "^4.17.0",
"@types/morgan": "^1.9.9",
"@types/node": "^22.0.0",
"@types/node-cron": "^3.0.11",
"@types/react": "^18.2.52",
"@types/react-dom": "^18.2.18",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"concurrently": "^9.0.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"husky": "^9.0.10",
"lint-staged": "^15.2.1",
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"sequelize-cli": "^6.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.11.0"
},
"dependencies": {
"@azure/openai": "^1.0.0-beta.11",
"@dqbd/tiktoken": "^1.0.16",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^6.0.0",
"@mui/material": "^6.0.0",
"@mui/utils": "^6.1.5",
"@mui/x-date-pickers": "^7.0.0",
"@sentry/browser": "^8.0.0",
"@sentry/node": "^8.0.0",
"@tanstack/react-query": "^5.18.1",
"@tanstack/react-query-devtools": "^5.28.14",
"@types/multer": "^1.4.11",
"@vitejs/plugin-react": "^4.2.1",
"axios": "^1.6.8",
"cors": "^2.8.5",
"date-fns": "^4.0.0",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"i18next": "^23.0.0",
"ioredis": "^5.3.2",
"lodash": "^4.17.21",
"markdown-to-txt": "^2.0.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"notistack": "^3.0.1",
"openai": "^4.0.0-beta.12",
"pdf-parse-fork": "^1.2.0",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^15.0.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.22.0",
"recharts": "^2.13.0-alpha.4",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"sequelize": "^6.36.0",
"umzug": "^3.6.1",
"unfuck-spa-shibboleth-session": "^4.1.0",
"unfuck-utf8-headers-middleware": "^1.0.1",
"vite": "^5.0.12",
"winston": "^3.11.0",
"winston-gelf-transporter": "^1.0.2"
},
"nodemonConfig": {
"ignore": [
"e2e"
],
"watch": [
"src"
],
"ext": "*.js,*.ts,*.json"
}
}