-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"name": "worldscope-server",
"type": "commonjs",
"version": "1.0.0",
"main": "index.js",
"author": "",
"license": "ISC",
"description": "",
"scripts": {
"build": "tsc",
"start": "tsx src/index.ts",
"dev:worker": "nodemon --max-old-space-size=4096 src/api/worker.mjs",
"lint": "eslint --fix src",
"test": "jest"
},
"dependencies": {
"@huggingface/transformers": "^3.3.3",
"@types/node-cron": "^3.0.11",
"axios": "^1.7.7",
"bluebird": "^3.7.2",
"bull": "^4.16.3",
"bullmq": "^5.21.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"helmet": "^8.0.0",
"knex": "^3.1.0",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"nodemon": "^3.1.7",
"pg": "^8.13.0",
"pgvector": "^0.2.0",
"sequelize": "^6.37.4",
"tsx": "^4.19.2"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/bluebird": "^3.5.42",
"@types/bun": "latest",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"eslint": "^9.12.0",
"eslint-config-google": "^0.14.0",
"globals": "^15.11.0",
"typescript": "^5.7.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}