-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.45 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
48
49
50
51
52
53
{
"name": "essential-server",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development nodemon --exec ts-node src/index.ts",
"start": "NODE_ENV=production ts-node-dev --transpile-only src/index.ts",
"tsc:check": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.7.8",
"axios-logger": "^2.8.1",
"axios-rate-limit": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"semver": "^7.6.3",
"ts-node-dev": "^2.0.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.0",
"@types/node-cache": "^4.1.3",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"nodemon": "^3.1.7",
"ts-essentials": "^10.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
}
}