-
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) · 982 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 982 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": "rate-limiter",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"build": "npx tsc",
"start": "node dist/server.js",
"dev": "nodemon src/server.ts",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --write ."
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.18.3",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.28",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
}
}