-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.02 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.02 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "octree.io-backend",
"version": "1.0.0",
"description": "Backend service for octree.io",
"main": "src/server.ts",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.658.1",
"@aws-sdk/client-s3": "^3.658.1",
"@aws-sdk/lib-dynamodb": "^3.658.1",
"@aws-sdk/types": "^3.654.0",
"@aws-sdk/util-dynamodb": "^3.658.1",
"@types/axios": "^0.14.0",
"@types/express": "^4.17.12",
"@types/morgan": "^1.9.2",
"amqplib": "^0.10.4",
"bcrypt": "^5.1.1",
"chai-http": "^5.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.17.1",
"groq-sdk": "^0.7.0",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"knex": "^3.1.0",
"mongodb": "^6.9.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"openai": "^5.2.0",
"path": "^0.12.7",
"pg": "^8.6.0",
"socket.io": "^4.8.0",
"ts-node": "^10.1.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/amqplib": "^0.10.5",
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.2",
"@types/chai": "^4.2.21",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.12",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/mocha": "^10.0.8",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.12",
"@types/uuid": "^10.0.0",
"axios": "^1.7.7",
"chai": "^5.1.1",
"express": "^4.17.1",
"jest": "^29.7.0",
"mocha": "^10.7.3",
"morgan": "^1.10.0",
"nodemon": "^3.1.7",
"ts-jest": "^29.2.5",
"ts-node": "^10.1.0",
"typescript": "^5.6.2"
},
"scripts": {
"start": "nodemon --signal SIGTERM src/server.ts",
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/octree-io/octree.io-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/octree-io/octree.io-backend/issues"
},
"homepage": "https://github.com/octree-io/octree.io-backend#readme"
}