-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.8 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.8 KB
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
{
"name": "polyglot-server",
"version": "0.1.0",
"description": "",
"private": true,
"main": "./src/server.ts",
"scripts": {
"start": "node ./dist/server.js",
"postinstall": "tsc",
"dev": "nodemon -L --watch ./src ./src/server.ts",
"test": "jest --detectOpenHandles --coverage --verbose",
"watch-test": "npm run test -- --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polyglot-edu/polyglot-server.git"
},
"author": "Tommaso Martorella (tom.martorella@gmail.com)",
"contributors": [
{
"name": "Davide Frageri",
"email": "davide.frag@gmail.com"
}
],
"bugs": {
"url": "https://github.com/polyglot-edu/polyglot-server/issues"
},
"homepage": "https://github.com/polyglot-edu/polyglot-server#readme",
"dependencies": {
"@azure/identity": "^4.5.0",
"@azure/openai": "^1.0.0-beta.2",
"axios": "^1.6.8",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"errorhandler": "^1.5.1",
"express": "^4.18.0",
"express-jwt": "^8.2.0",
"express-oauth2-jwt-bearer": "^1.3.0",
"express-validator": "^6.14.0",
"jwks-rsa": "^3.0.0",
"mongoose": "^6.6.6",
"multer": "^1.4.5-lts.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"winston": "^3.7.2"
},
"devDependencies": {
"@types/cookie-session": "^2.0.44",
"@types/cors": "^2.8.12",
"@types/errorhandler": "^1.5.3",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/mongodb": "^4.0.7",
"@types/multer": "^2.0.0",
"@types/node": "^17.0.29",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.8",
"jest": "^27.5.1",
"nodemon": "^3.1.7",
"ts-jest": "^27.1.4"
}
}