-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.3 KB
/
package.json
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
{
"name": "blog-search-service",
"version": "1.0.0",
"description": "blog search api service",
"main": "dist/index.js",
"author": "msx47",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"start": "node --experimental-modules --es-module-specifier-resolution=node dist/index.js",
"dev": "tsc-watch --onSuccess \"yarn start\"",
"lint": "eslint . --ext .ts",
"test": "echo \"Success: no test found or executed\" && exit 0"
},
"dependencies": {
"cookies": "^0.8.0",
"cors": "^2.8.5",
"dotenv": "^14.1.0",
"express": "^4.17.2",
"express-rate-limit": "^6.1.0",
"isomorphic-dompurify": "^0.18.0",
"marked": "^4.0.12",
"mongodb": "^4.3.0",
"node-fetch": "^3.2.0",
"redis": "^4.0.2",
"require-directory": "^2.1.1"
},
"devDependencies": {
"@types/cookies": "^0.7.7",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/marked": "^4.0.2",
"@types/node": "^18.15.3",
"@types/redis": "^4.0.11",
"@types/require-directory": "^2.1.2",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"bson": "^4.6.1",
"eslint": "^8.7.0",
"ts-node": "^10.4.0",
"ts-to-zod": "^1.8.0",
"tsc-watch": "^4.6.0",
"typescript": "^4.5.4"
}
}