-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 964 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 964 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
31
32
33
34
35
36
37
38
39
{
"name": "elastic-search-nodejs-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node-dev --files --respawn src/index.ts",
"clean": "rimraf dist/",
"build": "npm run clean && tsc",
"lint:fix": "eslint --fix --ext .ts ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/express": "^4.17.21",
"@types/ip": "^1.1.3",
"eslint": "^9.4.0",
"globals": "^15.3.0",
"supabase": "^1.172.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0"
},
"dependencies": {
"@elastic/elasticsearch": "^8.13.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-validator": "^7.0.1",
"ip": "^2.0.1",
"nanoid": "^3.3.4",
"prisma": "^5.15.0",
"redis": "^4.6.13",
"winston": "^3.13.0"
}
}