-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 762 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 762 Bytes
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
{
"name": "meili-sync",
"version": "1.0.0",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"docker:build": "docker build -t nullmastermind/meili-sync-image .",
"docker:push": "docker push nullmastermind/meili-sync-image"
},
"dependencies": {
"axios": "^1.6.7",
"dotenv": "^16.4.5",
"kafkajs": "^2.2.4",
"lodash": "^4.17.21",
"meilisearch": "^0.37.0",
"slugify": "^1.6.6"
},
"devDependencies": {
"@lobehub/lint": "^1.21.0",
"@types/dotenv": "^8.2.0",
"@types/node": "^20.11.20",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}